You are here

public function CalendarEvent::setAllDay in Calendar 8.2

Same name and namespace in other branches
  1. 8 src/CalendarEvent.php \Drupal\calendar\CalendarEvent::setAllDay()

Setter for the all day property.

Parameters

bool $allDay: TRUE if the event is all day, FALSE otherwise.

File

src/CalendarEvent.php, line 363

Class

CalendarEvent
Defines a calendar event object.

Namespace

Drupal\calendar

Code

public function setAllDay($allDay) {
  $this->allDay = $allDay;
}