Beispiel #1
0
 function ActionsAction()
 {
     $c = new ControllerModel();
     $c->_caches();
     $c->load($this->request->cid);
     $this->_view->assign('controller', $c);
     $a = new ActionModel();
     $a->_caches();
     $this->_view->assign('actions', $a->loadByController($c->id));
     if ($this->request->id) {
         $this->_view->assign('eaction', $a->load($this->request->id));
     }
     $this->_view->Actions();
     $this->_view->parse();
 }