manager = Icinga::app()->moduleManager(); } public function indexAction() { $this->view->modules = $this->manager->select() ->from('modules') ->order('name'); $this->render('overview'); } public function overviewAction() { $this->indexAction(); } public function enableAction() { $this->manager->enableModule($this->_getParam('name')); $this->redirectNow('modules/overview?_render=body'); } public function disableAction() { $this->manager->disableModule($this->_getParam('name')); $this->redirectNow('modules/overview?_render=body'); } }