You are here

protected function Calendar::hasCalendarRowPlugin in Calendar 8

Checks if this view uses the calendar row plugin.

Return value

bool True if it does, false if it doesn't.

1 call to Calendar::hasCalendarRowPlugin()
Calendar::render in src/Plugin/views/style/Calendar.php
Render the display in this style.

File

src/Plugin/views/style/Calendar.php, line 514

Class

Calendar
Views style plugin for the Calendar module.

Namespace

Drupal\calendar\Plugin\views\style

Code

protected function hasCalendarRowPlugin() {
  return $this->view->rowPlugin instanceof CalendarRow;
}