You are here

function feeds_ctools_plugin_api in Feeds 7

Same name and namespace in other branches
  1. 6 feeds.module \feeds_ctools_plugin_api()
  2. 7.2 feeds.module \feeds_ctools_plugin_api()

Implements hook_ctools_plugin_api().

Related topics

File

./feeds.module, line 298
Feeds - basic API functions and hook implementations.

Code

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