/** * Controller-Processing */ public function process() { if (!parent::process()) { return false; } $this->view->assign('term', $this->term); $this->view->assign('additional', '&id=' . $this->term->getId()); $this->view->render(); }
/** * Controller-Processing */ public function process() { if (!parent::process()) { return false; } $this->view->assign('msg', $this->message); $this->view->assign('additional', '&id=' . $this->message->getId()); $this->view->addJsVars(array('fpcmInactivityDatePicker' => array('daysfull' => $this->lang->getDays(), 'daysshort' => $this->lang->getDaysShort(), 'months' => array_values($this->lang->getMonths())))); $this->view->render(); }