Projet

Général

Profil

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

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

1
<?php
2

    
3
/**
4
 * @file
5
 * feeds_import.features.inc
6
 */
7

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