function TwigExtension::getActiveTheme

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Template/TwigExtension.php \Drupal\Core\Template\TwigExtension::getActiveTheme()
  2. 8.9.x core/lib/Drupal/Core/Template/TwigExtension.php \Drupal\Core\Template\TwigExtension::getActiveTheme()
  3. 10 core/lib/Drupal/Core/Template/TwigExtension.php \Drupal\Core\Template\TwigExtension::getActiveTheme()

Gets the name of the active theme.

Return value

string The name of the active theme.

File

core/lib/Drupal/Core/Template/TwigExtension.php, line 299

Class

TwigExtension
A class providing Drupal Twig extensions.

Namespace

Drupal\Core\Template

Code

public function getActiveTheme() {
    return $this->themeManager
        ->getActiveTheme()
        ->getName();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.