ThemeHandler::themeExists

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]);
}
doc_Drupal
2016-10-29 09:48:00
Comments
Leave a Comment

Please login to continue.