function calendar_plugin_style_ical::options in Calendar 7
Same name and namespace in other branches
- 6.2 calendar_ical/calendar_plugin_style_ical.inc \calendar_plugin_style_ical::options()
- 7.2 calendar_ical/calendar_plugin_style_ical.inc \calendar_plugin_style_ical::options()
Set default options
Overrides views_object::options
File
- calendar_ical/
calendar_plugin_style_ical.inc, line 51 - Views style plugin for the Calendar iCal module.
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();
}