public function PathProcessorManager::processOutbound

Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().

Overrides OutboundPathProcessorInterface::processOutbound

File

drupal/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php, line 112
Contains Drupal\Core\PathProcessor\PathProcessorManager.

Class

PathProcessorManager
Path processor manager.

Namespace

Drupal\Core\PathProcessor

Code

public function processOutbound($path, &$options = array(), Request $request = NULL) {
  $processors = $this
    ->getOutbound();
  foreach ($processors as $processor) {
    $path = $processor
      ->processOutbound($path, $options, $request);
  }
  return $path;
}