summaryrefslogtreecommitdiff
path: root/app/php/components/UserSelection.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-04-06 13:50:31 +0200
committeremkael <emkael@tlen.pl>2016-04-06 13:51:23 +0200
commitdfe234a7aaaacedcc94716f955b44a1b50c4a057 (patch)
tree3c16b945b65a654d6dd63421250fb2bb496cd1f2 /app/php/components/UserSelection.php
parentfd7b7aa1bade514a87667ff90b94dc3050f68560 (diff)
* components -> controls
Diffstat (limited to 'app/php/components/UserSelection.php')
-rw-r--r--app/php/components/UserSelection.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/app/php/components/UserSelection.php b/app/php/components/UserSelection.php
deleted file mode 100644
index 6ae68e4..0000000
--- a/app/php/components/UserSelection.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-Prado::using('Application.facades.CalendarFacade');
-
-class UserSelection 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->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) {
- }
- }
-
- private function _getUserSelection(DbUser $user) {
- return CalendarFacade::getInstance()->getPreferenceList($user);
- }
-
-}
-
-?>