You are here

function calendar_plugin_style_ical::query in Calendar 6.2

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

File

calendar_ical/calendar_plugin_style_ical.inc, line 12

Class

calendar_plugin_style_ical
Default style plugin to render an iCal feed.

Code

function query() {

  // We need these values for the iCal feed.
  $this->view->query
    ->add_field('node', 'title');
  $this->view->query
    ->add_field('node', 'type');
  parent::query();
}