Source for file bootstrap.php
Documentation is available at bootstrap.php
* Glorylands Engine Bootstrap File
* This file performs all the required initializations that must be done
* before any game action.
* GloryLands, a Web-Based, Massive Multiplayer Online RPG/Strategy Game
* Copyright (C) 2008-09 John Haralampidis <johnys2@gmail.com>
* 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, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* For any help/suggestions or troubleshooting you can see the
* project community website at <http://www.glorylands.gr>
* @license GNU General Public License 3
* @author John Haralampidis <johnys2@gmail.com>
* @copyright Copyright (C) 2007-2009, John Haralampidis
// Include all the required libraries (Load order is important)
include "lib/common/gltools.php";
include "lib/common/errors.php";
include "lib/common/glconfig.php";
include "lib/db/db.structured.php";
include "lib/db/structures/struct.ordered.php";
include "lib/common/cache.php";
include "lib/common/optimizer.php";
include "lib/common/gldataset.php";
include "lib/dom/gldom.php";
include "lib/dom/gldom_element.php";
include "lib/interface/gltemplate.php";
include "lib/interface/glsmarttemplate.php";
include "lib/system/gl.php";
include "lib/system/glstreamdef.php";
include "lib/system/glassemblyline.php";
include "lib/extensions/glhooks.php";
include "lib/extensions/glmodule.php";
include "lib/extensions/glmodules.php";
include "lib/gloo/gloolink.php";
include "lib/gloo/gloobject.php";
include "lib/dom/gloobject_stage.php";
include "lib/extensions/glIPC.php";
// Register the GL::finalize as a shutdown function
|