* @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
// 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
// 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__;
$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');
}
/**
- * 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
*/