summaryrefslogtreecommitdiff
path: root/app/php/components/UpcomingEvents.php
blob: 27fa8c64553816bcbdfdc58d969697543d8225d9 (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
<?php

Prado::using('Application.facades.EventFacade');

class UpcomingEvents extends TTemplateControl {

    public function getUserToDisplay() {
        return $this->getControlState('user');
    }

    public function setUserToDisplay($user) {
        $this->setControlState('user', $user);
    }

    public function onPreRender($param) {
        parent::onPreRender($param);
        $this->Events->setDataSource(
            $this->_getEventsForUser($this->UserToDisplay)
        );
        $this->Events->dataBind();
    }

    private function _getEventsForUser(DbUser $user) {
        $utc = new DateTimeZone('UTC');
        $dateFrom = new DateTime('now', $utc);
        $dateTo = new DateTime('+7 days', $utc);
        return EventFacade::getInstance()->getTimeframeListForUser(
            $user,
            $dateFrom, $dateTo
        );
    }

}

?>