function calendar_plugin_display_ical::render in Calendar 7
Same name and namespace in other branches
- 6.2 calendar_ical/calendar_plugin_display_ical.inc \calendar_plugin_display_ical::render()
- 7.2 calendar_ical/calendar_plugin_display_ical.inc \calendar_plugin_display_ical::render()
Instead of going through the standard views_view.tpl.php, delegate this to the style handler.
Overrides views_plugin_display::render
File
- calendar_ical/
calendar_plugin_display_ical.inc, line 44 - Views display plugin for the Calendar iCal module.
Class
- calendar_plugin_display_ical
- The plugin that handles a feed, such as RSS or atom.
Code
function render() {
return $this->view->style_plugin
->render($this->view->result);
}