public function CalendarEvent::setAllDay in Calendar 8
Same name and namespace in other branches
- 8.2 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 214
Class
- CalendarEvent
- Defines a calendar event object.
Namespace
Drupal\calendarCode
public function setAllDay($allDay) {
$this->allDay = $allDay;
}