Esempio n. 1
0
 /**
  * Initialize Bootstrap Configuration
  * @param bool|true $WithConfig     - Specifies Should Bootstrap Class Initialize Itself With Configuration File Or Without It
  */
 public static function Initialize($WithConfig = true)
 {
     if ($WithConfig) {
         Bootstrap::LoadConfig();
     }
     Bootstrap::LoadComponents();
     if (Bootstrap::$isDebugEnabled) {
         Bootstrap::$PageLoadTime = System\Utilities::PageLoadTime(true);
     }
 }