function feeds_crawler_ctools_plugin_api in Feeds Crawler 7.2
Same name and namespace in other branches
- 7 feeds_crawler.module \feeds_crawler_ctools_plugin_api()
Implements hook_ctools_plugin_api().
File
- ./
feeds_crawler.module, line 11 - feeds_crawler.module
Code
function feeds_crawler_ctools_plugin_api($owner, $api) {
if ($owner === 'feeds' && $api === 'plugins') {
return array(
'version' => 1,
);
}
}