Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ThemeRegistry.php

function ThemeRegistry::resolveCacheMiss

Overrides CacheCollector::resolveCacheMiss

1 call to ThemeRegistry::resolveCacheMiss()
ThemeRegistry::get in core/lib/Drupal/Core/Utility/ThemeRegistry.php
Gets value from the cache.

File

core/lib/Drupal/Core/Utility/ThemeRegistry.php, line 122

Class

ThemeRegistry
Builds the run-time theme registry.

Namespace

Drupal\Core\Utility

Code

public function resolveCacheMiss($key) {
    if (!isset($this->completeRegistry)) {
        $this->completeRegistry = \Drupal::service('theme.registry')->get();
    }
    $this->storage[$key] = $this->completeRegistry[$key];
    if ($this->persistable) {
        $this->persist($key);
    }
    return $this->storage[$key];
}
RSS feed
Powered by Drupal