Changed all true/false to TRUE/FALSE respectively as PHP constants are better than...
[mailer.git] / index.php
index a14e71b0b5f8275639eb7a3ad1ef652288a9d34a..2f8d830cda176562b0a3e4de4e6ab67e401434f8 100644 (file)
--- a/index.php
+++ b/index.php
@@ -32,20 +32,6 @@ final class ApplicationEntryPoint {
         */
        private static $corePath = '';
 
-       /**
-        * The instances we want to remove after all is done
-        */
-       private static $instances = array (
-               'cfg',    // The configuration system
-               'loader', // The class loader system
-               'debug',  // Debug output
-               'db',     // Database layer
-               'io',     // Base I/O system (local file [or network])
-               'engine', // Template engine ( for ApplicationEntryPoint::app_exit() )
-               'lang',   // Language sub-system
-               'app',    // The ApplicationHelper instance
-       );
-
        /**
         * The application's emergency exit
         *
@@ -56,7 +42,7 @@ final class ApplicationEntryPoint {
         * @return      void
         * @todo        This method is old code and needs heavy rewrite and should be moved to ApplicationHelper
         */
-       public static final function app_exit ($message = '', $code = false, $extraData = '', $silentMode = false) {
+       public static final function app_exit ($message = '', $code = FALSE, $extraData = '', $silentMode = FALSE) {
                // Is this method already called?
                if (isset($GLOBALS['app_die_called'])) {
                        // Then output the text directly
@@ -64,7 +50,7 @@ final class ApplicationEntryPoint {
                } // END - if
 
                // This method shall not be called twice
-               $GLOBALS['app_die_called'] = true;
+               $GLOBALS['app_die_called'] = TRUE;
 
                // Is a message set?
                if (empty($message)) {
@@ -76,7 +62,7 @@ final class ApplicationEntryPoint {
                $configInstance = FrameworkConfiguration::getSelfInstance();
 
                // 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
                        exit();
                } // END - if
@@ -173,7 +159,7 @@ final class ApplicationEntryPoint {
                        exit();
                } else {
                        // Output message and die
-                       exit(sprintf("[Main:] Emergency exit reached: <span class=\"emergency_span\">%s</span>",
+                       exit(sprintf('[Main:] Emergency exit reached: <span class="emergency_span">%s</span>',
                                $message
                        ));
                }
@@ -220,10 +206,10 @@ final class ApplicationEntryPoint {
 } // END - class
 
 // Developer mode active? Comment out if no dev!
-define('DEVELOPER', true);
+define('DEVELOPER', TRUE);
 
 // Log all exceptions (only debug! This option can create large error logs)
-//define('LOG_EXCEPTIONS', true);
+//define('LOG_EXCEPTIONS', TRUE);
 
 //xdebug_start_trace();