-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathframe_content.php
30 lines (25 loc) · 1.12 KB
/
frame_content.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/************************************************************************/
/* AContent */
/************************************************************************/
/* Copyright (c) 2010 */
/* Inclusive Design Institute */
/* */
/* This program is free software. You can redistribute it and/or */
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation. */
/************************************************************************/
define('TR_INCLUDE_PATH', '../include/');
include(TR_INCLUDE_PATH.'vitals.inc.php');
if (isset($_GET['p'])) {
$this_page = htmlentities_utf8($_GET['p']);
} else {
$this_page = 'index.php';
}
require('handbook_header.inc.php');
if (isset($_pages[$this_page]['guide']))
{
echo _AT($_pages[$this_page]['guide']);
}
require('handbook_footer.inc.php');
?>