You are here

public function TwigExtension::getActiveThemePath in Drupal 8

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

Gets the path of the active theme.

Return value

string The path to the active theme.

File

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

Class

TwigExtension
A class providing Drupal Twig extensions.

Namespace

Drupal\Core\Template

Code

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