function PathProcessorManager::processInbound
Same name in other branches
- 9 core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php \Drupal\Core\PathProcessor\PathProcessorManager::processInbound()
- 8.9.x core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php \Drupal\Core\PathProcessor\PathProcessorManager::processInbound()
- 10 core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php \Drupal\Core\PathProcessor\PathProcessorManager::processInbound()
Overrides InboundPathProcessorInterface::processInbound
File
-
core/
lib/ Drupal/ Core/ PathProcessor/ PathProcessorManager.php, line 67
Class
- PathProcessorManager
- Path processor manager.
Namespace
Drupal\Core\PathProcessorCode
public function processInbound($path, Request $request) {
$processors = $this->getInbound();
foreach ($processors as $processor) {
$path = $processor->processInbound($path, $request);
}
return $path;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.