You are here

public function VendorStreamWrapperPathProcessor::processInbound in Vendor Stream Wrapper 8

Processes the inbound path.

Implementations may make changes to the request object passed in but should avoid all other side effects. This method can be called to process requests other than the current request.

Parameters

string $path: The path to process, with a leading slash.

\Symfony\Component\HttpFoundation\Request $request: The HttpRequest object representing the request to process. Note, if this method is being called via the path_processor_manager service and is not part of routing, the current request object must be cloned before being passed in.

Return value

string The processed path.

Overrides InboundPathProcessorInterface::processInbound

File

src/PathProcessor/VendorStreamWrapperPathProcessor.php, line 16

Class

VendorStreamWrapperPathProcessor
Path Processor for the Vendor Stream Wrapper module.

Namespace

Drupal\vendor_stream_wrapper\PathProcessor

Code

public function processInbound($path, Request $request) {

  // Only act on paths that start with /vendor_files/.
  if (strpos($path, '/vendor_files/') === 0) {
    $names = preg_replace('|^\\/vendor_files\\/|', '', $path);
    $names = str_replace('/', ':', $names);
    return "/vendor_files/{$names}";
  }
  return $path;
}