Neos\Neos\Routing\FrontendNodeRoutePartHandler::parseDimensionsAndNodePathFromRequestPath PHP Method

parseDimensionsAndNodePathFromRequestPath() protected method

Choose between default method for parsing dimensions or the one which allows uriSegment to be empty for default preset.
protected parseDimensionsAndNodePathFromRequestPath ( &$requestPath ) : array
return array An array of dimension name => dimension values (array of string)
    protected function parseDimensionsAndNodePathFromRequestPath(&$requestPath)
    {
        if ($this->supportEmptySegmentForDimensions) {
            $dimensionsAndDimensionValues = $this->parseDimensionsAndNodePathFromRequestPathAllowingEmptySegment($requestPath);
        } else {
            $dimensionsAndDimensionValues = $this->parseDimensionsAndNodePathFromRequestPathAllowingNonUniqueSegment($requestPath);
        }
        return $dimensionsAndDimensionValues;
    }