feeds_node_helper_import.features.inc in Feeds Node Helper 7
File
features/feeds_node_helper_import/feeds_node_helper_import.features.incView source
<?php
/**
* @file
* feeds_node_helper_import.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function feeds_node_helper_import_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "feeds" && $api == "feeds_importer_default") {
return array(
"version" => "1",
);
}
if ($module == "feeds_tamper" && $api == "feeds_tamper_default") {
return array(
"version" => "2",
);
}
}Functions
|
Name |
Description |
|---|---|
| feeds_node_helper_import_ctools_plugin_api | Implements hook_ctools_plugin_api(). |