stuff
This commit is contained in:
40
lib/routing.php
Normal file
40
lib/routing.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
function getProtocol(){
|
||||
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && !empty($_SERVER['HTTP_X_FORWARDED_PROTO'])) {
|
||||
return "https://";
|
||||
} else {
|
||||
return "http://";
|
||||
}
|
||||
}
|
||||
|
||||
function getPage($routerConfig){
|
||||
$page_dir = $routerConfig['page_dir'];
|
||||
|
||||
$dynamic_page_file = $page_dir . $subdomain . "/" . $page_name . ".php";
|
||||
$page_file = $page_dir . $subdomain . "/" . $page_name . ".html";
|
||||
|
||||
$dynamic_page_file_global = $page_dir . "global/" . $page_name . ".php";
|
||||
$page_file_global = $page_dir . "global/" . $page_name . ".html";
|
||||
|
||||
$skeleton = file_get_contents($template_dir . "skeleton.html");
|
||||
$nav = file_get_contents($template_dir . "nav.html");
|
||||
|
||||
if (file_exists($dynamic_page_file_global)){
|
||||
$page = include_once $dynamic_page_file_global;
|
||||
}
|
||||
elseif (file_exists($page_file_global)){
|
||||
$page = file_get_contents($page_file_global);
|
||||
}
|
||||
elseif (file_exists($dynamic_page_file)){
|
||||
$page = include_once $dynamic_page_file;
|
||||
}
|
||||
elseif (file_exists($page_file)){
|
||||
$page = file_get_contents($page_file);
|
||||
}
|
||||
else{
|
||||
$page = file_get_contents($template_dir . "404.html");
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user