MiconwareSession->init($this); $this->MiconwareSession->initWeb($this); $this->set('MENU_SERVICE', true); $this->set('SERVICE_index', true); $this->render('/Service/index'); } public function serviceList(){ $this->MiconwareSession->init($this); $this->MiconwareSession->initWeb($this); $this->set('MENU_SERVICE', true); $this->set('SERVICE_'.$this->request->param('list'), true); $this->render('/Service/'.$this->request->param('list')); } public function serviceItem(){ $this->MiconwareSession->init($this); $this->MiconwareSession->initWeb($this); $this->set('MENU_SERVICE', true); $this->set('SERVICE_'.$this->request->param('list'), true); $this->render('/Service/'.$this->request->param('list').'_'.$this->request->param('item')); } }