You are here

function parser_ical_ctools_plugin_api in iCal feed parser 7

Same name and namespace in other branches
  1. 6.2 parser_ical.module \parser_ical_ctools_plugin_api()
  2. 7.2 parser_ical.module \parser_ical_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

File

./parser_ical.module, line 13
Parse the incoming URL with date_api_ical

Code

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