Projet

Général

Profil

Paste
Télécharger (297 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / feeds / feeds_import / feeds_import.features.inc @ 13755f8d

1
<?php
2
/**
3
 * @file
4
 * feeds_import.features.inc
5
 */
6

    
7
/**
8
 * Implementation of hook_ctools_plugin_api().
9
 */
10
function feeds_import_ctools_plugin_api() {
11
  list($module, $api) = func_get_args();
12
  if ($module == "feeds" && $api == "feeds_importer_default") {
13
    return array("version" => 1);
14
  }
15
}