You are here

public function AliasPathProcessor::processInbound in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/path_alias/src/PathProcessor/AliasPathProcessor.php \Drupal\path_alias\PathProcessor\AliasPathProcessor::processInbound()

Processes the inbound path.

Implementations may make changes to the request object passed in but should avoid all other side effects. This method can be called to process requests other than the current request.

Parameters

string $path: The path to process, with a leading slash.

\Symfony\Component\HttpFoundation\Request $request: The HttpRequest object representing the request to process. Note, if this method is being called via the path_processor_manager service and is not part of routing, the current request object must be cloned before being passed in.

Return value

string The processed path.

Overrides InboundPathProcessorInterface::processInbound

File

core/modules/path_alias/src/PathProcessor/AliasPathProcessor.php, line 36

Class

AliasPathProcessor
Processes the inbound path using path alias lookups.

Namespace

Drupal\path_alias\PathProcessor

Code

public function processInbound($path, Request $request) {
  $path = $this->aliasManager
    ->getPathByAlias($path);
  return $path;
}