diff options
| author | Simon | 2011-03-16 13:01:28 +0100 |
|---|---|---|
| committer | Simon | 2011-03-16 13:01:28 +0100 |
| commit | b99d7a884edabd9e5d297c8117ee7552ca702b96 (patch) | |
| tree | 185a8b8a4cdbb868380a1549f0e540c4174f5dae /application/modules/user/controllers/ClientController.php | |
| parent | controller und actions für Client und Pool hinzugefügt (diff) | |
| download | pbs2-b99d7a884edabd9e5d297c8117ee7552ca702b96.tar.gz pbs2-b99d7a884edabd9e5d297c8117ee7552ca702b96.tar.xz pbs2-b99d7a884edabd9e5d297c8117ee7552ca702b96.zip | |
Arbeiten am Clientcontroller, Membership in Auth gesetzt
Diffstat (limited to 'application/modules/user/controllers/ClientController.php')
| -rw-r--r-- | application/modules/user/controllers/ClientController.php | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/application/modules/user/controllers/ClientController.php b/application/modules/user/controllers/ClientController.php index cb139d5..a8d0d3d 100644 --- a/application/modules/user/controllers/ClientController.php +++ b/application/modules/user/controllers/ClientController.php @@ -2,15 +2,29 @@ class User_ClientController extends Zend_Controller_Action { - + private $this->membership; public function init() { /* Initialize action controller here */ + $membershipMapper = new Application_Model_MembershipMapper(); + $this->membership = new Application_Model_Membership(); + $membershipMapper->find($_SESSION['membershipID'],$this->membership); } public function indexAction() { - // action body + // TODO: ACL: is he athorized to see this ? + + // Get the Clients which booted with a bootiso of this group + $groupID = $this->membership->getGroupID(); + $bootisoMapper = new Application_Model_BootIsoMapper(); + $bootisos = $bootisoMapper->findby('groupID',$groupID); + + $sessions + + + + } public function addclientAction() |
