* @package Schoorbs * @license http://www.gnu.org/licenses/gpl.html GNU General Public License */ /// Includes /// /** The Configuration file */ require_once 'config.inc.php'; /** The general 'things' when viewing Schoorbs on the web */ require_once 'schoorbs-includes/global.web.php'; /** The general functions */ require_once 'schoorbs-includes/global.functions.php'; /** The modern ORM databse layer */ require_once 'schoorbs-includes/database/schoorbsdb.class.php'; /** The template system */ require_once 'schoorbs-includes/schoorbstpl.class.php'; // Only administrators should be able to create rooms and areas if (!getAuthorised(2)) showAccessDenied(); /** * @todo Switch accordion to the area choosen by $_REQUEST['area'] */ SchoorbsTPL::renderPage('administration');