You are here

public function ActiveTheme::getBaseThemeExtensions in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Theme/ActiveTheme.php \Drupal\Core\Theme\ActiveTheme::getBaseThemeExtensions()

Returns an array of base theme extension objects keyed by name.

The order starts with the base theme of $this and ends with the root of the dependency chain.

Return value

\Drupal\Core\Extension\Extension[]

File

core/lib/Drupal/Core/Theme/ActiveTheme.php, line 258

Class

ActiveTheme
Defines a theme and its information needed at runtime.

Namespace

Drupal\Core\Theme

Code

public function getBaseThemeExtensions() {
  return $this->baseThemeExtensions;
}