*
* @author Roland Haeder <webmaster@ship-simu.org>
* @version 0.0.0
- * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team
+ * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
* @license GNU GPL 3.0 or any newer version
* @link http://www.ship-simu.org
*
* @return void
* @todo This method is old code and needs heavy rewrite
*/
- public static function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) {
+ public static final function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) {
// Is this method already called?
if (isset($GLOBALS['app_die_called'])) {
// Then output the text directly
} // END - foreach
// Init application instance
- $appInstance = null;
+ $applicationInstance = null;
// Is the class there?
if (class_exists('ApplicationHelper')) {
// Get application instance
- $appInstance = ApplicationHelper::getInstance();
+ $applicationInstance = ApplicationHelper::getInstance();
// Assign application data
- $templateInstance->assignApplicationData($appInstance);
+ $templateInstance->assignApplicationData($applicationInstance);
} // END - if
// We only try this
*
* @return $corePath Base path (core) for all includes
*/
- protected static function detectCorePath () {
+ protected static final function detectCorePath () {
// Is it not set?
if (empty(self::$corePath)) {
// Auto-detect our core path
*
* @return void
*/
- public static function main () {
+ public static final function main () {
// Load config file
require(self::detectCorePath() . '/inc/config.php');