function ThemeAccessCheck::checkAccess
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Theme/ThemeAccessCheck.php \Drupal\Core\Theme\ThemeAccessCheck::checkAccess()
- 10 core/lib/Drupal/Core/Theme/ThemeAccessCheck.php \Drupal\Core\Theme\ThemeAccessCheck::checkAccess()
- 11.x core/lib/Drupal/Core/Theme/ThemeAccessCheck.php \Drupal\Core\Theme\ThemeAccessCheck::checkAccess()
Indicates whether the theme is accessible based on whether it is installed.
Parameters
string $theme: The name of a theme.
Return value
bool TRUE if the theme is installed, FALSE otherwise.
File
-
core/
lib/ Drupal/ Core/ Theme/ ThemeAccessCheck.php, line 54
Class
- ThemeAccessCheck
- Provides access checking for themes for routing and theme negotiation.
Namespace
Drupal\Core\ThemeCode
public function checkAccess($theme) {
$themes = $this->themeHandler
->listInfo();
return !empty($themes[$theme]->status);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.