You are here

public function CalendarStyleInfo::setCalendarPopup in Calendar 8

Same name and namespace in other branches
  1. 8.2 src/CalendarStyleInfo.php \Drupal\calendar\CalendarStyleInfo::setCalendarPopup()

Setter for the calendar popup variable.

Parameters

bool $calendarPopup: TRUE to show the calendar in a popup, FALSE otherwise.

File

src/CalendarStyleInfo.php, line 145

Class

CalendarStyleInfo
Defines a calendar style info object.

Namespace

Drupal\calendar

Code

public function setCalendarPopup($calendarPopup) {
  $this->calendarPopup = $calendarPopup;
}