ThemeAccessCheck::access

public ThemeAccessCheck::access($theme)

Checks access to the theme for routing.

Parameters

string $theme: The name of a theme.

Return value

\Drupal\Core\Access\AccessResultInterface The access result.

File

core/lib/Drupal/Core/Theme/ThemeAccessCheck.php, line 39

Class

ThemeAccessCheck
Provides access checking for themes for routing and theme negotiation.

Namespace

Drupal\Core\Theme

Code

public function access($theme) {
  // Cacheable until the theme settings are modified.
  return AccessResult::allowedIf($this->checkAccess($theme))->addCacheTags(['config:' . $theme . '.settings']);
}
doc_Drupal
2016-10-29 09:47:52
Comments
Leave a Comment

Please login to continue.