public function TwigExtension::getActiveThemePath in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 304 - Contains \Drupal\Core\Template\TwigExtension.
Class
- TwigExtension
- A class providing Drupal Twig extensions.
Namespace
Drupal\Core\TemplateCode
public function getActiveThemePath() {
return $this->themeManager
->getActiveTheme()
->getPath();
}