function ThemeManager::getActiveTheme
Overrides ThemeManagerInterface::getActiveTheme
2 calls to ThemeManager::getActiveTheme()
- ThemeManager::alter in core/
lib/ Drupal/ Core/ Theme/ ThemeManager.php - Passes alterable variables to specific $theme_TYPE_alter() implementations.
- ThemeManager::render in core/
lib/ Drupal/ Core/ Theme/ ThemeManager.php - Generates themed output.
File
-
core/
lib/ Drupal/ Core/ Theme/ ThemeManager.php, line 93
Class
- ThemeManager
- Provides the default implementation of a theme manager.
Namespace
Drupal\Core\ThemeCode
public function getActiveTheme(?RouteMatchInterface $route_match = NULL) {
if (!isset($this->activeTheme)) {
$this->initTheme($route_match);
}
return $this->activeTheme;
}