public function ThemeHandler::getTheme in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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.
Throws
\InvalidArgumentException Thrown when the requested theme does not exist.
Overrides ThemeHandlerInterface::getTheme
File
- core/
lib/ Drupal/ Core/ Extension/ ThemeHandler.php, line 478 - Contains \Drupal\Core\Extension\ThemeHandler.
Class
- ThemeHandler
- Default theme handler using the config system to store installation statuses.
Namespace
Drupal\Core\ExtensionCode
public function getTheme($name) {
$themes = $this
->listInfo();
if (isset($themes[$name])) {
return $themes[$name];
}
throw new \InvalidArgumentException(sprintf('The theme %s does not exist.', $name));
}