public static function JsProxyCache::setExcludedConf 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::setExcludedConf()
- _js_cache_initialize in ./
js.module - Initializes the cache system and our custom handler.
File
- src/
JsProxyCache.php, line 61
Class
- JsProxyCache
- JS custom cache handler.
Code
public static function setExcludedConf(array $conf) {
static::$excludedConf = array_combine($conf, $conf);
}