public function __construct($session_started = false) { parent::__construct($session_started); //$this->setViewTemplate('_user_register.tpl'); $this->addToView('first_name', SessionCache::get('first_name')); $this->setPageTitle('User Registeration'); }
public function __construct($session_started = false) { parent::__construct($session_started); $request_uri = Utils::getApplicationRequestURI(); if (strpos($request_uri, 'logout.php') === false) { $this->url_mapping = Utils::getApplicationURL() . $request_uri; } }
/** * Constructor * @param bool $session_started * @return ActivateAccountController */ public function __construct($session_started = false) { parent::__construct($session_started); foreach ($this->REQUIRED_PARAMS as $param) { if (!isset($_GET[$param]) || $_GET[$param] == '') { $this->is_missing_param = true; } } }
public function __construct($session_started = false) { parent::__construct($session_started); $this->setViewTemplate('register.tpl'); $this->setPageTitle('User Registeration'); }
public function __construct($session_started = false) { parent::__construct($session_started); $this->setViewTemplate('upload/file.tpl'); $this->setPageTitle('User Files'); }