public static function JsProxyCache::setConf in JS Callback Handler 7.2
Sets the cache bin configuration.
Parameters
string[] $conf: An associative array of cache backend class names keyed by their cache bin name.
1 call to JsProxyCache::setConf()
- _js_cache_initialize in ./
js.module - Initializes the cache system and our custom handler.
File
- src/
JsProxyCache.php, line 50
Class
- JsProxyCache
- JS custom cache handler.
Code
public static function setConf(array $conf) {
static::$conf = $conf;
}