class PathProcessorDecode

Processes the inbound path by urldecoding it.

Parameters in the URL sometimes represent code-meaningful strings. It is therefore useful to always urldecode() those values so that individual controllers need not concern themselves with it. This is Drupal-specific logic and may not be familiar for developers used to other Symfony-family projects.

@todo Revisit whether or not this logic is appropriate for here or if controllers should be required to implement this logic themselves. If we decide to keep this code, remove this TODO.

Hierarchy

Expanded class hierarchy of PathProcessorDecode

1 file declares its use of PathProcessorDecode
PathProcessorTest.php in drupal/core/tests/Drupal/Tests/Core/PathProcessor/PathProcessorTest.php
Contains Drupal\Tests\Core\PathProcessor\PathProcessorTest.
1 string reference to 'PathProcessorDecode'
core.services.yml in drupal/core/core.services.yml
drupal/core/core.services.yml

File

drupal/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php, line 26
Contains Drupal\Core\PathProcessor\PathProcessorDecode.

Namespace

Drupal\Core\PathProcessor
View source
class PathProcessorDecode implements InboundPathProcessorInterface {

  /**
   * Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
   */
  public function processInbound($path, Request $request) {
    return urldecode($path);
  }

}

Members