public function InboundPathProcessorInterface::processInbound in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/PathProcessor/InboundPathProcessorInterface.php \Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound()
Processes the inbound path.
Parameters
string $path: The path to process, with a leading slash.
\Symfony\Component\HttpFoundation\Request $request: The HttpRequest object representing the current request.
Return value
string The processed path.
12 methods override InboundPathProcessorInterface::processInbound()
- BrokenInboundPathProcessor::processInbound in core/
modules/ system/ tests/ modules/ update_script_test/ src/ PathProcessor/ BrokenInboundPathProcessor.php - Processes the inbound path.
- LanguageNegotiationUrl::processInbound in core/
modules/ language/ src/ Plugin/ LanguageNegotiation/ LanguageNegotiationUrl.php - Processes the inbound path.
- NullPathProcessorManager::processInbound in core/
lib/ Drupal/ Core/ PathProcessor/ NullPathProcessorManager.php - Processes the inbound path.
- PathProcessor::processInbound in core/
modules/ system/ tests/ modules/ url_alter_test/ src/ PathProcessor.php - Processes the inbound path.
- PathProcessorAlias::processInbound in core/
lib/ Drupal/ Core/ PathProcessor/ PathProcessorAlias.php - Processes the inbound path.
File
- core/
lib/ Drupal/ Core/ PathProcessor/ InboundPathProcessorInterface.php, line 28 - Contains \Drupal\Core\PathProcessor\InboundPathProcessorInterface.
Class
- InboundPathProcessorInterface
- Defines an interface for classes that process the inbound path.
Namespace
Drupal\Core\PathProcessorCode
public function processInbound($path, Request $request);