function feeds_facebook_ctools_plugin_api in Feeds: Facebook parser 7
Implementation of hook_ctools_plugin_api().
File
- ./
feeds_facebook.module, line 10 - Adds a Facebook feed processor to the Feeds module.
Code
function feeds_facebook_ctools_plugin_api($owner, $api) {
if ($owner == 'feeds' && $api == 'plugins') {
return array(
'version' => 1,
);
}
}