Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ThemeManager.php

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\Theme

Code

public function getActiveTheme(?RouteMatchInterface $route_match = NULL) {
    if (!isset($this->activeTheme)) {
        $this->initTheme($route_match);
    }
    return $this->activeTheme;
}
RSS feed
Powered by Drupal