All pastes #2128379 Raw Edit

Something

public text v1 · immutable
#2128379 ·published 2012-03-15 13:49 UTC
rendered paste body
<?
	require("./inc/inc.config.php");
	require("./inc/inc.general.php");
	
	/* Check if selected page exists, if it doesnt default page will be set */
	if (!file_exists(ROOT . "/inc/pages/" . $_REQUEST["page"] . ".php"))
		$_REQUEST["page"] = "main";
	
	/* Get content from selected page */
	ob_start();
	require(ROOT . "/inc/pages/" . $_REQUEST["page"] . ".php");
	$content = ob_get_clean();
	
	/* Display site head */
	$smarty->assign("meta", meta($_REQUEST["page"]));
	$smarty->display("SiteHead.tpl");
	
	/* Assign content, menu and todays date */
	$smarty->assign("date", today());
	$smarty->assign("content", $content);
	$smarty->assign("menu", menu($_REQUEST["page"]));
	$smarty->assign("page", $_REQUEST["page"]);
	$smarty->assign("url", "orebro/?" . $_SERVER["QUERY_STRING"]);
	
	/* Display site body */
	$smarty->display("SiteBody.tpl");
	
	/* Display site foot */
	$smarty->display("SiteFoot.tpl");
?>