function feeds_youtube_ctools_plugin_api in Feeds: YouTube Parser 7.2
Same name and namespace in other branches
- 7.3 feeds_youtube.module \feeds_youtube_ctools_plugin_api()
Implements hook_ctools_plugin_api().
File
- ./
feeds_youtube.module, line 13 - Adds a YouTube feed processor to the Feeds module.
Code
function feeds_youtube_ctools_plugin_api($owner, $api) {
if ($owner == 'feeds' && $api == 'plugins') {
return array(
'version' => 1,
);
}
}