You are here

protected function LanguageNegotiationUserAdmin::isAdminPath in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php \Drupal\user\Plugin\LanguageNegotiation\LanguageNegotiationUserAdmin::isAdminPath()

Checks whether the given path is an administrative one.

Parameters

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

Return value

bool TRUE if the path is administrative, FALSE otherwise.

1 call to LanguageNegotiationUserAdmin::isAdminPath()
LanguageNegotiationUserAdmin::getLangcode in core/modules/user/src/Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php
Performs language negotiation.

File

core/modules/user/src/Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php, line 126
Contains \Drupal\user\Plugin\LanguageNegotiation\LanguageNegotiationUserAdmin.

Class

LanguageNegotiationUserAdmin
Identifies admin language from the user preferences.

Namespace

Drupal\user\Plugin\LanguageNegotiation

Code

protected function isAdminPath(Request $request) {
  $result = FALSE;
  if ($request && $this->adminContext) {

    // If called from an event subscriber, the request may not have the route
    // object yet (it is still being built), so use the router to look up
    // based on the path.
    $route_match = $this->stackedRouteMatch
      ->getRouteMatchFromRequest($request);
    if ($route_match && !($route_object = $route_match
      ->getRouteObject())) {
      try {

        // Process the path as an inbound path. This will remove any language
        // prefixes and other path components that inbound processing would
        // clear out, so we can attempt to load the route clearly.
        $path = $this->pathProcessorManager
          ->processInbound(urldecode(rtrim($request
          ->getPathInfo(), '/')), $request);
        $attributes = $this->router
          ->match($path);
      } catch (ResourceNotFoundException $e) {
        return FALSE;
      } catch (AccessDeniedHttpException $e) {
        return FALSE;
      }
      $route_object = $attributes[RouteObjectInterface::ROUTE_OBJECT];
    }
    $result = $this->adminContext
      ->isAdminRoute($route_object);
  }
  return $result;
}