Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php \Drupal\Core\PathProcessor\PathProcessorManager::processOutbound()
  2. 9 core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php \Drupal\Core\PathProcessor\PathProcessorManager::processOutbound()

File

core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php, line 105

Class

PathProcessorManager
Path processor manager.

Namespace

Drupal\Core\PathProcessor

Code

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