You are here

function calendar_plugin_style::has_calendar_row_plugin in Calendar 7.3

1 call to calendar_plugin_style::has_calendar_row_plugin()
calendar_plugin_style::render in includes/calendar_plugin_style.inc
Render the display in this style.

File

includes/calendar_plugin_style.inc, line 228
Views style plugin for the Calendar module.

Class

calendar_plugin_style
Default style plugin to render an iCal feed.

Code

function has_calendar_row_plugin() {
  return $this->row_plugin instanceof calendar_plugin_row || $this->row_plugin instanceof calendar_plugin_row_node;
}