page = new TplPageBuilder(); $this->page->addScript('movim_hash.js'); $this->page->addScript('movim_utils.js'); $this->page->addScript('movim_base.js'); $this->page->addScript('movim_tpl.js'); $this->page->addScript('movim_websocket.js'); $this->page->addScript('movim_map.js'); $this->page->addScript('pako_inflate.js'); } /** * Returns the value of a $_GET variable. Mainly used to avoid getting * notices from PHP when attempting to fetch an empty variable. * @param name is the desired variable's name. * @return the value of the requested variable, or FALSE. */ protected function fetchGet($name) { if(isset($_GET[$name])) { return htmlentities($_GET[$name]); } else { return false; } } /** * Returns the value of a $_POST variable. Mainly used to avoid getting * notices from PHP when attempting to fetch an empty variable. * @param name is the desired variable's name. * @return the value of the requested variable, or FALSE. */ protected function fetchPost($name) { if(isset($_POST[$name])) { return htmlentities($_POST[$name]); } else { return false; } } function checkSession() { if($this->session_only) { $user = new User(); if(!$user->isLogged()) { $this->name = 'login'; } } } function redirect($page) { $url = Route::urlize($page, array($this->fetchGet('err'))); header('Location: '. $url); } function display() { if($this->session_only) { $user = new User(); $content = new TplPageBuilder($user); } else { $content = new TplPageBuilder(); } if($this->raw) { echo $content->build($this->name); exit; } else { $built = $content->build($this->name); $this->page->setContent($built); echo $this->page->build('page'); } } }