function ThemeRegistry::initializeRegistry
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 
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);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
