function feeds_news_ctools_plugin_api in Feeds 7
Same name and namespace in other branches
- 8.2 feeds_news/feeds_news.features.inc \feeds_news_ctools_plugin_api()
- 6 feeds_news/feeds_news.features.inc \feeds_news_ctools_plugin_api()
- 7.2 feeds_news/feeds_news.features.inc \feeds_news_ctools_plugin_api()
Implementation of hook_ctools_plugin_api().
File
- feeds_news/
feeds_news.features.inc, line 6
Code
function feeds_news_ctools_plugin_api() {
list($module, $api) = func_get_args();
if ($module == "feeds" && $api == "feeds_importer_default") {
return array(
"version" => 1,
);
}
}