public function PathProcessorDecode::processInbound in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php \Drupal\Core\PathProcessor\PathProcessorDecode::processInbound()
- 9 core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php \Drupal\Core\PathProcessor\PathProcessorDecode::processInbound()
File
- core/
lib/ Drupal/ Core/ PathProcessor/ PathProcessorDecode.php, line 25
Class
- PathProcessorDecode
- Processes the inbound path by urldecoding it.
Namespace
Drupal\Core\PathProcessorCode
public function processInbound($path, Request $request) {
return urldecode($path);
}