public ThemeHandler::themeExists($theme)
Determines whether a given theme is installed.
Parameters
string $theme: The name of the theme (without the .theme extension).
Return value
bool TRUE if the theme is installed.
Overrides ThemeHandlerInterface::themeExists
File
- core/lib/Drupal/Core/Extension/ThemeHandler.php, line 470
Class
- ThemeHandler
- Default theme handler using the config system to store installation statuses.
Namespace
Drupal\Core\Extension
Code
public function themeExists($theme) { $themes = $this->listInfo(); return isset($themes[$theme]); }
Please login to continue.