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

Adds an outbound processor object to the $outboundProcessors property.

Parameters

\Drupal\Core\PathProcessor\OutboundPathProcessorInterface $processor: The processor object to add.

int $priority: The priority of the processor being added.

File

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

Class

PathProcessorManager
Path processor manager.

Namespace

Drupal\Core\PathProcessor

Code

public function addOutbound(OutboundPathProcessorInterface $processor, $priority = 0) {
  $this->outboundProcessors[$priority][] = $processor;
  $this->sortedOutbound = [];
}