public function OutboundPathProcessorInterface::processOutbound

Processes the outbound path.

Parameters

string $path: The path to process.

array $options: An array of options such as would be passed to the generator's generateFromPath() method.

\Symfony\Component\HttpFoundation\Request $request: The HttpRequest object representing the current request.

Return value

The processed path.

5 methods override OutboundPathProcessorInterface::processOutbound()
PathProcessorAlias::processOutbound in drupal/core/lib/Drupal/Core/PathProcessor/PathProcessorAlias.php
Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
PathProcessorFront::processOutbound in drupal/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php
Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
PathProcessorLanguage::processOutbound in drupal/core/modules/language/lib/Drupal/language/HttpKernel/PathProcessorLanguage.php
Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processOutbound().
PathProcessorManager::processOutbound in drupal/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
PathProcessorTest::processOutbound in drupal/core/modules/system/tests/modules/url_alter_test/lib/Drupal/url_alter_test/PathProcessorTest.php
Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().

File

drupal/core/lib/Drupal/Core/PathProcessor/OutboundPathProcessorInterface.php, line 33
Contains Drupal\Core\PathProcessor\OutboundPathProcessorInterface.

Class

OutboundPathProcessorInterface
Defines an interface for classes that process the outbound path.

Namespace

Drupal\Core\PathProcessor

Code

public function processOutbound($path, &$options = array(), Request $request = NULL);