module = $this->module(); $this->ctrl = $this->ctrl(); $this->className = 'app\\' . $this->module . '\\controller\\' . $this->ctrl; $this->action = $this->action(); $this->param = $this->param(); } /** * * {@inheritdoc} * * @see \system\core\route\ifs\RouteIfs::module() */ public function module() { // TODO Auto-generated method stub return 'home'; } /** * * {@inheritdoc} * * @see \system\core\route\ifs\RouteIfs::ctrl() */ public function ctrl() { // TODO Auto-generated method stub return 'index'; } /** * * {@inheritdoc} * * @see \system\core\route\ifs\RouteIfs::action() */ public function action() { // TODO Auto-generated method stub return 'index'; } /** * * {@inheritdoc} * * @see \system\core\route\ifs\RouteIfs::params() */ public function param() { // TODO Auto-generated method stub return []; } }