ptut-vhost/build/router/controller/page.php

53 lines
751 B
PHP
Raw Normal View History

2018-02-17 17:18:58 +00:00
<?php
namespace router\controller;
class page{
private $pagename;
2018-02-27 13:48:07 +00:00
private $uri;
2018-02-17 17:18:58 +00:00
/* PRE-CALL
*
* @url<String> Calling URI
*
*/
public function __construct($url){
$this->pagename = $url['page'];
$this->uri = $url['uri'];
2018-02-17 17:18:58 +00:00
}
/* CALL
*
*/
public function load(){
/* (1) Build page file name */
$page_fname = __PUBLIC__."/page/".$this->pagename.".php";
/* (2) If page does not exist -> 404 */
2018-02-20 16:45:02 +00:00
if( !file_exists($page_fname) )
include __PUBLIC__.'/page/404.php';
/* (3) Set URI arguments */
$_GET['uri'] = explode('/', $this->uri);
/* (4) Load page */
include __PUBLIC__."/page/".$this->pagename.".php";
2018-02-17 17:18:58 +00:00
}
/* POST-CALL
*
*/
public function __destruct(){
}
}