blob: 1ba5600fd3ad6f2695782e4f0a309398ff718f41 (
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
|
<?php
Prado::using('Application.web.TemplateControl');
Prado::using('Application.facades.EventFacade');
class UpcomingEvents extends TemplateControl {
public function setFacade(Facade $facade) {
$this->setViewState('Facade', $facade);
}
public function getFacade() {
return $this->getViewState('Facade');
}
public function getUserToDisplay() {
return $this->getControlState('user');
}
public function setUserToDisplay($user) {
$this->setControlState('user', $user);
}
public function getEvents() {
return $this->_getEventsForUser($this->UserToDisplay);
}
private function _getEventsForUser(DbUser $user) {
$utc = new DateTimeZone('UTC');
$dateFrom = new DateTime('now', $utc);
$dateTo = new DateTime('+7 days', $utc);
return $this->getFacade()->getTimeframeListForUser(
$user,
$dateFrom, $dateTo
);
}
}
?>
|