getConfigCacheKey example


  protected function doLoadMultiple(array $names$immutable = TRUE) {
    $list = [];

    foreach ($names as $key => $name) {
      $cache_key = $this->getConfigCacheKey($name$immutable);
      if (isset($this->cache[$cache_key])) {
        $list[$name] = $this->cache[$cache_key];
        unset($names[$key]);
      }
    }

    // Pre-load remaining configuration files.     if (!empty($names)) {
      // Initialize override information.       $module_overrides = [];
      $storage_data = $this->storage->readMultiple($names);

      
Home | Imprint | This part of the site doesn't use cookies.