-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
21 lines (16 loc) · 722 Bytes
/
about.php
File metadata and controls
21 lines (16 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
define("INCLUDED", true); //This is for returning a die message if INCLUDED is not defined on any of the template
$AJAX_PAGE = false;
//################ Required Resources ################
$REQUIRED_RESOURCES = array();
//################ Required Files ################
require_once("init.php");
//################ PAGE ACCESS ################
$cms->BannedAccess(true);
eval($cms->SetPageAccess(ACCESS_ALL));
//################ General Variables ################
$page_name[] = array("About Us"=>"about.php");
$template = "about"; //The template to use for the page. Dont include .tpl inside quotes.
//################ Page Functions ################
eval($templates->Output($template));
?>