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() { // 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() { // action body } public function removeclientAction() { // action body } public function editclientAction() { // action body } }