function theme_get_registry
Same name in other branches
- 7.x includes/theme.inc \theme_get_registry()
- 9 core/includes/theme.inc \theme_get_registry()
- 10 core/includes/theme.inc \theme_get_registry()
Gets the theme registry.
Parameters
bool $complete: Optional boolean to indicate whether to return the complete theme registry array or an instance of the Drupal\Core\Utility\ThemeRegistry class. If TRUE, the complete theme registry array will be returned. This is useful if you want to foreach over the whole registry, use array_* functions or inspect it in a debugger. If FALSE, an instance of the Drupal\Core\Utility\ThemeRegistry class will be returned, this provides an ArrayObject which allows it to be accessed with array syntax and isset(), and should be more lightweight than the full registry. Defaults to TRUE.
Return value
The complete theme registry array, or an instance of the Drupal\Core\Utility\ThemeRegistry class.
1 call to theme_get_registry()
- hook_preprocess in core/
lib/ Drupal/ Core/ Render/ theme.api.php - Preprocess theme variables for templates.
File
-
core/
includes/ theme.inc, line 90
Code
function theme_get_registry($complete = TRUE) {
$theme_registry = \Drupal::service('theme.registry');
if ($complete) {
return $theme_registry->get();
}
else {
return $theme_registry->getRuntime();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.