function date_ical_feeds_plugins in Date iCal 7.3
Same name and namespace in other branches
- 7.2 date_ical.module \date_ical_feeds_plugins()
Implements hook_feeds_plugins().
File
- ./
date_ical.module, line 54 - Adds ical functionality to Views, and an iCal parser to Feeds.
Code
function date_ical_feeds_plugins() {
$path = drupal_get_path('module', 'date_ical') . '/includes';
$info = array();
$info['DateiCalFeedsParser'] = array(
'name' => 'iCal parser',
'description' => t('Parse iCal feeds.'),
'handler' => array(
'parent' => 'FeedsParser',
'class' => 'DateiCalFeedsParser',
'file' => 'DateiCalFeedsParser.inc',
'path' => $path,
),
);
return $info;
}