You are here

public function AllowToolbarPath::check in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/toolbar/src/PageCache/AllowToolbarPath.php \Drupal\toolbar\PageCache\AllowToolbarPath::check()
  2. 9 core/modules/toolbar/src/PageCache/AllowToolbarPath.php \Drupal\toolbar\PageCache\AllowToolbarPath::check()

Determines whether delivery of a cached page should be attempted.

Note that the request-policy check runs very early. In particular it is not possible to determine the logged in user. Also the current route match is not yet present when the check runs. Therefore, request-policy checks need to be designed in a way such that they do not depend on any other service and only take in account the information present on the incoming request.

When matching against the request path, special attention is needed to support path prefixes which are often used on multilingual sites.

Parameters

\Symfony\Component\HttpFoundation\Request $request: The incoming request object.

Return value

string|null One of static::ALLOW, static::DENY or NULL. Calling code may attempt to deliver a cached page if static::ALLOW is returned. Returns NULL if the policy is not specified for the given request.

Overrides RequestPolicyInterface::check

File

core/modules/toolbar/src/PageCache/AllowToolbarPath.php, line 19

Class

AllowToolbarPath
Cache policy for the toolbar page cache service.

Namespace

Drupal\toolbar\PageCache

Code

public function check(Request $request) {

  // Note that this regular expression matches the end of pathinfo in order to
  // support multilingual sites using path prefixes.
  if (preg_match('#/toolbar/subtrees/[^/]+(/[^/]+)?$#', $request
    ->getPathInfo())) {
    return static::ALLOW;
  }
}