Projet

Général

Profil

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

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

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

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