You are here

function calendar_plugin_style_ical::options in Calendar 6.2

Same name and namespace in other branches
  1. 7 calendar_ical/calendar_plugin_style_ical.inc \calendar_plugin_style_ical::options()
  2. 7.2 calendar_ical/calendar_plugin_style_ical.inc \calendar_plugin_style_ical::options()

Set default options

File

calendar_ical/calendar_plugin_style_ical.inc, line 45

Class

calendar_plugin_style_ical
Default style plugin to render an iCal feed.

Code

function options(&$options) {
  parent::options($options);
  $options['summary_field'] = 'title';
  $options['description_field'] = '';
  $options['location_field'] = '';
  $options['fields'] = array();
}