function ContextualLinksNegotiator::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/modules/contextual/src/Theme/ContextualLinksNegotiator.php, line 23

Class

ContextualLinksNegotiator
Set the theme according to the parameter passed to the controller.

Namespace

Drupal\contextual\Theme

Code

public function applies(RouteMatchInterface $route_match) : bool {
  return $route_match->getRouteName() === 'contextual.render';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.