function feeds_atom_ctools_plugin_api in Feeds Atom 6
Same name and namespace in other branches
- 7 feeds_atom.module \feeds_atom_ctools_plugin_api()
Implementation of hook_ctools_plugin_api().
File
- ./
feeds_atom.module, line 13 - 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,
);
}
}