You are here

public function SitemapPathProcessor::processInbound in Simple XML sitemap 4.x

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/SitemapPathProcessor.php, line 18

Class

SitemapPathProcessor
Class SitemapInboundPathProcessor

Namespace

Drupal\simple_sitemap\PathProcessor

Code

public function processInbound($path, Request $request) {
  $args = explode('/', $path);
  if (count($args) === 3 && $args[2] === 'sitemap.xml') {
    $path = '/sitemaps/' . $args[1] . '/sitemap.xml';
  }
  return $path;
}