<?php
// Copyright (c) MetaClass, 2003-2007
// Licensed under the Academic Free License version 3.0
require_once('../classes/generalFunctions.php');
//register the Site class
$GLOBALS['PntIncludedClasses']['site'] = 'Site';
includeClass('', 'pnt/web');
/** Objects of this class are the single entrypoint for handling http requests.
* Site connects to the database as specified in scriptMakeSettings.php and
* sets the ErrorHandler, the debugMode, specifies application folder and domain folder,
* supplies StringConverters, baseUrl and takes care of sessions.
*
* This concrete subclass is here to keep de application developers
* code (including localization overrides) separated from the framework code.
* @see http://www.phppeanuts.org/site/index_php/Menu/178
* Framework code is in superclass.
*/
class Site extends {
//var $debugMode = 'verbose'; //options: '', 'short', 'verbose'