You are here

function feeds_crawler_ctools_plugin_api in Feeds Crawler 7

Same name and namespace in other branches
  1. 7.2 feeds_crawler.module \feeds_crawler_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./feeds_crawler.module, line 32
Feeds crawler.module

Code

function feeds_crawler_ctools_plugin_api($owner, $api) {
  if ($owner == 'feeds' && $api == 'plugins') {
    return array(
      'version' => 1,
    );
  }
}