Exemplo n.º 1
0
 /**
  * General construction.
  *
  * @return object
  */
 public function construct()
 {
     unset($_REQUEST['_SESSION']);
     unset($_POST['_SESSION']);
     unset($_GET['_SESSION']);
     $this->_POST = empty($_POST) ? array() : $_POST;
     $this->_GET = empty($_GET) ? array() : $_GET;
     return parent::construct();
 }
Exemplo n.º 2
0
 /**
  * Constructor
  *
  * @return parent
  */
 public function construct()
 {
     $this->theme = $this->core->activeTemplate();
     return parent::construct();
 }