function ThemeHandler::getTheme

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

Returns a theme extension object from the currently active theme list.

Parameters

string $name: The name of the theme to return.

Return value

\Drupal\Core\Extension\Extension An extension object.

Overrides ThemeHandlerInterface::getTheme

File

core/lib/Drupal/Core/Extension/ThemeHandler.php, line 178

Class

ThemeHandler
Default theme handler using the config system to store installation statuses.

Namespace

Drupal\Core\Extension

Code

public function getTheme($name) {
  $themes = $this->listInfo();
  if (isset($themes[$name])) {
    return $themes[$name];
  }
  throw new UnknownExtensionException(sprintf('The theme %s does not exist.', $name));
}

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