function ThemeRegistry::initializeRegistry

Same name and namespace in other branches
  1. 7.x includes/theme.inc \ThemeRegistry::initializeRegistry()
  2. 9 core/lib/Drupal/Core/Utility/ThemeRegistry.php \Drupal\Core\Utility\ThemeRegistry::initializeRegistry()
  3. 8.9.x core/lib/Drupal/Core/Utility/ThemeRegistry.php \Drupal\Core\Utility\ThemeRegistry::initializeRegistry()
  4. 10 core/lib/Drupal/Core/Utility/ThemeRegistry.php \Drupal\Core\Utility\ThemeRegistry::initializeRegistry()

Initializes the full theme registry.

Return value

array An array with the keys of the full theme registry, but the values initialized to NULL.

2 calls to ThemeRegistry::initializeRegistry()
ThemeRegistry::updateCache in core/lib/Drupal/Core/Utility/ThemeRegistry.php
Writes a value to the persistent cache immediately.
ThemeRegistry::__construct in core/lib/Drupal/Core/Utility/ThemeRegistry.php
Constructs a ThemeRegistry object.

File

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

Class

ThemeRegistry
Builds the run-time theme registry.

Namespace

Drupal\Core\Utility

Code

public function initializeRegistry() {
    // @todo DIC this.
    $this->completeRegistry = \Drupal::service('theme.registry')->get();
    return array_fill_keys(array_keys($this->completeRegistry), NULL);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.