2) Refactor App->config[] into Core\PConfig

This commit is contained in:
Philipp Holzer
2019-02-03 19:05:44 +01:00
parent d43a8184f4
commit f40c57fc20
2 changed files with 6 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ class JITPConfigAdapter implements IPConfigAdapter
} }
} else if ($cat != 'config') { } else if ($cat != 'config') {
// Negative caching // Negative caching
PConfig::setPConfigValue($uid, $cat, "!<unset>!"); PConfig::setPConfigValue($uid, $cat, null, "!<unset>!");
} }
DBA::close($pconfigs); DBA::close($pconfigs);
} }

View File

@@ -203,8 +203,12 @@ class PConfig extends BaseObject
self::$config[$uid][$cat] = []; self::$config[$uid][$cat] = [];
} }
if ($k === null) {
self::$config[$uid][$cat] = $value;
} else {
self::$config[$uid][$cat][$k] = $value; self::$config[$uid][$cat][$k] = $value;
} }
}
/** /**
* Deletes a value from the user config cache * Deletes a value from the user config cache