Beispiel #1
0
 private static function initCache()
 {
     Settings::$cache = array();
     $settings = Setting::model()->findAll();
     foreach ($settings as $setting) {
         Settings::$cache[$setting->key] = $setting->value;
     }
 }
Beispiel #2
0
 public static function get()
 {
     if (!self::$cache) {
         $json = file_get_contents(ROOTDIR . "/src/server/settings.json");
         $json = str_replace("%DROOT%", ROOTDIR, $json);
         self::$cache = (array) json_decode($json, true);
     }
     return self::$cache;
 }
Beispiel #3
0
 public static function get()
 {
     if (!self::$cache) {
         $json = file_get_contents(ROOTDIR . "/src/server/settings.json");
         $root = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' ? str_replace('\\', '/', ROOTDIR) : ROOTDIR;
         $json = str_replace("%DROOT%", $root, $json);
         self::$cache = (array) json_decode($json, true);
     }
     return self::$cache;
 }
Beispiel #4
0
    public static function get()
    {
        if (!self::$cache) {
            $json = <<<EOJSON

%JSON%

EOJSON;
            self::$cache = (array) json_decode($json, true);
        }
        return self::$cache;
    }
Beispiel #5
0
    public static function get()
    {
        if (!self::$cache) {
            $json = <<<EOJSON

%JSON%

EOJSON;
            $root = dirname(dirname(__DIR__));
            $json = str_replace("%DROOT%", $root, $json);
            self::$cache = (array) json_decode($json, true);
        }
        return self::$cache;
    }