You are here

function views_ical_plugin_style_ical_feed::render in Views iCal 7

Render the display in this style.

Overrides views_plugin_style_rss::render

File

./views_ical_plugin_style_ical_feed.inc, line 33
Views style plugin for the Views iCal module.

Class

views_ical_plugin_style_ical_feed
Default style plugin to render an iCal feed.

Code

function render() {
  if (empty($this->row_plugin)) {
    debug('views_plugin_style_default: Missing row plugin');
    return;
  }
  $rows = array();
  foreach ($this->view->result as $row_index => $row) {
    $this->view->row_index = $row_index;
    $rows[] = $this->row_plugin
      ->render($row);
  }
  $output = theme($this
    ->theme_functions(), array(
    'view' => $this->view,
    'options' => $this->options,
    'rows' => $rows,
  ));
  unset($this->view->row_index);
  return $output;
}