function calendar_ical_views_style_plugins in Calendar 5.2
Same name and namespace in other branches
- 5 calendar_ical.module \calendar_ical_views_style_plugins()
Provide views plugins for the feed types we support.
File
- ./
calendar_ical.module, line 167 - Adds ical functionality to Calendar.
Code
function calendar_ical_views_style_plugins() {
return array(
'calendar_ical' => array(
'name' => t('Calendar: iCal Feed'),
'theme' => 'calendar_ical_feed',
'needs_table_header' => TRUE,
'needs_fields' => TRUE,
'even_empty' => TRUE,
),
);
}