You are here

function calendar_ical_views_style_plugins in Calendar 5

Same name and namespace in other branches
  1. 5.2 calendar_ical.module \calendar_ical_views_style_plugins()

Provide views plugins for the feed types we support.

File

./calendar_ical.module, line 272
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,
    ),
  );
}