@@ -20,13 +20,6 @@ class FrontendNodeRoutePartHandler extends NeosFrontendNodeRoutePartHandler
20
20
*/
21
21
public const MIXIN_PROPERTY_NAME = 'hideSegmentInUriPath ' ;
22
22
23
-
24
- /**
25
- * @Flow\InjectConfiguration("routing.supportEmptySegmentForDimensions", package="Neos.Neos")
26
- * @var boolean
27
- */
28
- protected bool $ supportEmptySegmentForDimensions ;
29
-
30
23
/**
31
24
* @param string $requestPath
32
25
* @return string
@@ -77,7 +70,7 @@ protected function getRelativeNodePathByUriPathSegmentProperties(NodeInterface $
77
70
* @return NodeInterface|null
78
71
* @throws NodeException
79
72
*/
80
- protected function findNextNodeWithPathSegmentRecursively (
73
+ protected function findNextNodeWithPathSegmentRecursively (
81
74
NodeInterface $ startingNode ,
82
75
$ pathSegment ,
83
76
&$ relativeNodePathSegments ,
@@ -126,7 +119,12 @@ protected function getRequestPathByNode(NodeInterface $node): string
126
119
// To disallow showing a node actually hidden itself has to be ensured in matching
127
120
// a request path, not in building one.
128
121
$ contextProperties = $ node ->getContext ()->getProperties ();
129
- $ contextAllowingHiddenNodes = $ this ->contextFactory ->create (array_merge ($ contextProperties , ['invisibleContentShown ' => true ]));
122
+ $ contextAllowingHiddenNodes = $ this ->contextFactory ->create (
123
+ array_merge (
124
+ $ contextProperties ,
125
+ ['invisibleContentShown ' => true ]
126
+ )
127
+ );
130
128
$ currentNode = $ contextAllowingHiddenNodes ->getNodeByIdentifier ($ node ->getIdentifier ());
131
129
132
130
$ requestPathSegments = [];
0 commit comments