summaryrefslogtreecommitdiff
path: root/app/php/dto/CalendarGroupDTO.php
blob: 7b64c6e934d4de52fbff2aeca46f7b8276749f35 (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
<?php

Prado::using('Application.model.Category');
Prado::using('Application.dto.CalendarDTO');

class CalendarGroupDTO {

    public $Name;
    public $ID;
    public $Priority;
    public $Calendars = [];

    public function loadRecord(Category $categoryRecord, array $calendars) {
        $this->Name = $categoryRecord->Name;
        $this->ID = $categoryRecord->ID;
        $this->Priority = $categoryRecord->Priority;
        $this->Calendars = array_map(
            function($calendarRecord) {
                $dto = new CalendarDTO();
                $dto->loadRecord($calendarRecord);
                return $dto;
            },
            array_filter(
                $calendars,
                function($calendarRecord) use($categoryRecord) {
                    return $categoryRecord->ID == $calendarRecord->CategoryID;
                }
            )
        );
        usort($this->Calendars, ['CalendarDTO', '__compare']);
    }

    public static function __compare(CalendarGroupDTO $cat1,
                                     CalendarGroupDTO $cat2) {
        $cmp = ($cat1->Priority ?: PHP_MAX_INT) - ($cat2->Priority ?: PHP_MAX_INT);
        if ($cmp !== 0) {
            return $cmp;
        }
        return strcmp($cat1->Name, $cat2->Name);
    }

}

?>