Example #1
0
 public static function readConfig($reset = false)
 {
     if (!self::$_config || $reset) {
         include CONFIG_FILE;
         self::$_config = $config;
     }
     return self::$_config;
 }