public function ThemeHandler::themeExists in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Extension/ThemeHandler.php \Drupal\Core\Extension\ThemeHandler::themeExists()
 - 10 core/lib/Drupal/Core/Extension/ThemeHandler.php \Drupal\Core\Extension\ThemeHandler::themeExists()
 
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 195  
Class
- ThemeHandler
 - Default theme handler using the config system to store installation statuses.
 
Namespace
Drupal\Core\ExtensionCode
public function themeExists($theme) {
  $themes = $this
    ->listInfo();
  return isset($themes[$theme]);
}