module = $this->module(); $this->ctrl = $this->ctrl(); $this->class = '\\' . APP_NS . '\\' . $this->module . '\\controller\\' . $this->ctrl; $this->action = $this->action(); $this->param = $this->param(); } /** * */ public function module() { // TODO Auto-generated method stub return 'home'; } /** * */ public function ctrl() { // TODO Auto-generated method stub return 'Index'; } /** * */ public function action() { // TODO Auto-generated method stub return 'index'; } /** * */ public function param() { // TODO Auto-generated method stub return []; } }