You are here

protected function PathProcessorManager::getInbound in Drupal 8

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

Returns the sorted array of inbound processors.

Return value

array An array of processor objects.

1 call to PathProcessorManager::getInbound()
PathProcessorManager::processInbound in core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
Processes the inbound path.

File

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

Class

PathProcessorManager
Path processor manager.

Namespace

Drupal\Core\PathProcessor

Code

protected function getInbound() {
  if (empty($this->sortedInbound)) {
    $this->sortedInbound = $this
      ->sortProcessors('inboundProcessors');
  }
  return $this->sortedInbound;
}