You are here

public function date_ical_plugin_row_ical_entity::option_definition in Date iCal 7.3

Same name and namespace in other branches
  1. 7.2 includes/date_ical_plugin_row_ical_entity.inc \date_ical_plugin_row_ical_entity::option_definition()

Set up the options for the row plugin.

Overrides views_plugin_row::option_definition

File

includes/date_ical_plugin_row_ical_entity.inc, line 32
Contains the iCal row style plugin.

Class

date_ical_plugin_row_ical_entity
A Views plugin which builds an iCal VEVENT from a single node.

Code

public function option_definition() {
  $options = parent::option_definition();
  $options['date_field'] = array(
    'default' => array(),
  );
  $options['summary_field'] = array(
    'default' => array(),
  );
  $options['location_field'] = array(
    'default' => array(),
  );
  return $options;
}