function ThemeRegistry::initializeRegistry in Drupal 7
Initializes the full theme registry.
Return value
An array with the keys of the full theme registry, but the values initialized to NULL.
2 calls to ThemeRegistry::initializeRegistry()
- ThemeRegistry::set in includes/
theme.inc - Writes a value to the persistent cache immediately.
- ThemeRegistry::__construct in includes/
theme.inc - Constructs a DrupalCacheArray object.
File
- includes/
theme.inc, line 410 - The theme system, which controls the output of Drupal.
Class
- ThemeRegistry
- Builds the run-time theme registry.
Code
function initializeRegistry() {
$this->completeRegistry = theme_get_registry();
return array_fill_keys(array_keys($this->completeRegistry), NULL);
}