Example #1
0
 /**
  * Get the current action
  * REMARK: You should not use this method from your code, but it has to be public so we can access it later on in the core-code
  *
  * @return	string
  */
 public function getAction()
 {
     // no action specified?
     if ($this->action === null) {
         $this->setAction($this->config->getDefaultAction());
     }
     // return action
     return $this->action;
 }
Example #2
0
 /**
  * @param string $module
  */
 public function __construct($module)
 {
     parent::__construct($module);
     $this->loadEngineFiles();
 }