From 1d8cc1dc1fef6c01ed774d888228ca841af06588 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 30 Aug 2009 22:20:45 +0000 Subject: [PATCH] Instance variable rewritten --- index.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/index.php b/index.php index b9f2e8e..d534a47 100644 --- a/index.php +++ b/index.php @@ -60,7 +60,7 @@ final class ApplicationEntryPoint { * @param $silentMode Wether not silent mode is turned on * @return void */ - public static function app_die ($message = "", $code = false, $extraData = "", $silentMode = false) { + public static function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) { // Is this method already called? if (defined('EMERGENCY_EXIT_CALLED')) { // Then output the text directly @@ -73,27 +73,27 @@ final class ApplicationEntryPoint { // Is a message set? if (empty($message)) { // No message provided - $message = "No message provided!"; + $message = 'No message provided!'; } // END - if // Get config instance $configInstance = FrameworkConfiguration::getInstance(); // Do we have debug installation? - if (($configInstance->getConfigEntry('product_install_mode') == "productive") || ($silentMode === true)) { + if (($configInstance->getConfigEntry('product_install_mode') == 'productive') || ($silentMode === true)) { // Abort here die(); } // END - if // Get some instances $tpl = FrameworkConfiguration::getInstance()->getConfigEntry('template_class'); - $lang = LanguageSystem::getInstance(); + $languageInstance = LanguageSystem::getInstance(); // Get response instance $responseInstance = ApplicationHelper::getInstance()->getResponseInstance(); // Is the template engine loaded? - if ((class_exists($tpl)) && (is_object($lang))) { + if ((class_exists($tpl)) && (is_object($languageInstance))) { // Use the template engine for putting out (nicer look) the message try { // Get the template instance from our object factory @@ -106,7 +106,7 @@ final class ApplicationEntryPoint { // Get and prepare backtrace for output $backtraceArray = debug_backtrace(); - $backtrace = ""; + $backtrace = ''; foreach ($backtraceArray as $key => $trace) { if (!isset($trace['file'])) $trace['file'] = __FILE__; if (!isset($trace['line'])) $trace['line'] = __LINE__; @@ -133,7 +133,7 @@ final class ApplicationEntryPoint { $templateInstance->assignVariable('backtrace', $backtrace); $templateInstance->assignVariable('total_includes', ClassLoader::getInstance()->getTotal()); $templateInstance->assignVariable('total_objects', ObjectFactory::getTotal()); - $templateInstance->assignVariable('title', $lang->getMessage('emergency_exit_title')); + $templateInstance->assignVariable('title', $languageInstance->getMessage('emergency_exit_title')); // Load the template $templateInstance->loadCodeTemplate('emergency_exit'); @@ -161,7 +161,8 @@ final class ApplicationEntryPoint { } /** - * Determines the correct absolute path for all include + * Determines the correct absolute path for all includes only once per run. + * Other calls of this method are being "cached". * * @return $basePath Base path (core) for all includes */ -- 2.30.2