Example #1
0
 private static function init()
 {
     if (self::$init == true) {
         return;
     }
     $string = file_get_contents(self::$config_path);
     self::$properties = json_decode($string, TRUE);
     self::$init = true;
 }