You are here

function feeds_ctools_plugin_api in Feeds 6

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

Implementation of hook_ctools_plugin_api().

Related topics

File

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

Code

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