You are here

protected function PathProcessorManager::getOutbound in Drupal 8

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

Returns the sorted array of outbound processors.

Return value

array An array of processor objects.

1 call to PathProcessorManager::getOutbound()
PathProcessorManager::processOutbound in core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
Processes the outbound path.

File

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

Class

PathProcessorManager
Path processor manager.

Namespace

Drupal\Core\PathProcessor

Code

protected function getOutbound() {
  if (empty($this->sortedOutbound)) {
    $this->sortedOutbound = $this
      ->sortProcessors('outboundProcessors');
  }
  return $this->sortedOutbound;
}