public function DefaultNegotiator::applies in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Theme/DefaultNegotiator.php \Drupal\Core\Theme\DefaultNegotiator::applies()
- 10 core/lib/Drupal/Core/Theme/DefaultNegotiator.php \Drupal\Core\Theme\DefaultNegotiator::applies()
Whether this theme negotiator should be used to set the theme.
Parameters
\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match object.
Return value
bool TRUE if this negotiator should be used or FALSE to let other negotiators decide.
Overrides ThemeNegotiatorInterface::applies
File
- core/
lib/ Drupal/ Core/ Theme/ DefaultNegotiator.php, line 33
Class
- DefaultNegotiator
- Determines the default theme of the site.
Namespace
Drupal\Core\ThemeCode
public function applies(RouteMatchInterface $route_match) {
return TRUE;
}