blob: 233f0bf07aa7a203d4fe607cc2e6bf40cb05fcb3 (
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
|
<?php
Prado::using('Application.web.FacadeTemplateControl');
Prado::using('Application.user.DbUser');
Prado::using('Application.facades.CalendarFacade');
class UserSelection extends FacadeTemplateControl {
public function getUserToDisplay() {
return $this->getControlState('user');
}
public function setUserToDisplay(DbUser $user = NULL) {
$this->setControlState('user', $user);
}
public function onPreRender($param) {
parent::onPreRender($param);
$this->Categories->setDataSource(
$this->_getUserSelection($this->UserToDisplay)
);
$this->Categories->dataBind();
}
public function categoryDataBind($sender, $param) {
$param->Item->Calendars->setDataSource($param->Item->Data->Calendars);
$param->Item->Calendars->dataBind();
}
public function removeFromSelection($sender, $param) {
if (!$this->UserToDisplay->IsGuest) {
return $this->getFacade()->removeFromPreference(
$this->UserToDisplay,
$param->CommandParameter
);
}
}
private function _getUserSelection(DbUser $user) {
return $this->getFacade()->getPreferenceList($user);
}
}
?>
|