function feeds_atom_ctools_plugin_api in Feeds Atom 7
Same name and namespace in other branches
- 6 feeds_atom.module \feeds_atom_ctools_plugin_api()
Implements hook_ctools_plugin_api().
File
- ./
feeds_atom.module, line 28 - Contains the main functionality for feeds_atom.
Code
function feeds_atom_ctools_plugin_api($owner, $api) {
if ($owner == 'feeds' && $api == 'plugins') {
return array(
'version' => 1,
);
}
}