You are here

public function CalendarEvent::isAllDay in Calendar 8

Getter for the all day property.

Return value

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

File

src/CalendarEvent.php, line 204

Class

CalendarEvent
Defines a calendar event object.

Namespace

Drupal\calendar

Code

public function isAllDay() {
  return $this->allDay;
}