You are here

public function TestLanguageNegotiator::processInbound in Language Selection Page 8.2

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 LanguageNegotiationUrl::processInbound

File

tests/modules/src/Plugin/LanguageNegotiation/TestLanguageNegotiator.php, line 49

Class

TestLanguageNegotiator
Test language negotiator.

Namespace

Drupal\language_selection_page_test\Plugin\LanguageNegotiation

Code

public function processInbound($path, Request $request) {
  return str_replace('-fake', '', $path);
}