blob: 4a16505dab3c27ce3f358da2feb789fc238fdee5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?php
Prado::using('Application.model.Entry');
Prado::using('Application.dto.CalendarDTO');
class EventDTO {
public $DateString;
public $Name;
public $Location;
public $Calendar;
public function loadRecord(Entry $event, array $calendars) {
$this->Name = $event->Name;
$this->Location = $event->Location;
$utc = new DateTimeZone('UTC');
$targetTz = new DateTimeZone(date_default_timezone_get());
$beginDate = new DateTime($event->BeginDate, $utc);
$endDate = new DateTime($event->EndDate, $utc);
if ($event->AllDay) {
$endDate = $endDate->modify('-1 day');
$this->DateString = $beginDate->format('Y-m-d');
if ($beginDate != $endDate) {
$this->DateString .= sprintf(
' - %s',
$endDate->format('Y-m-d')
);
}
} else {
$beginDate = $beginDate->setTimezone($targetTz);
$this->DateString = $beginDate->format('Y-m-d H:i');
}
$calendars = array_filter(
$calendars,
function ($calendar) use($event) {
return $calendar->UID == $event->CalendarID;
}
);
$this->Calendar = new CalendarDTO();
$this->Calendar->loadRecord($calendars ? array_values($calendars)[0] : $event->Calendar);
}
}
?>
|