Actions
Bug #87923
closedMissing value of item.data.shortcut if use MenuProcessor
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Content Rendering
Target version:
-
Start date:
2019-03-15
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Missing value of item.data.shortcut if setup shortcut mode = 3, but if choice concrete page (shortcut mode = 0) than is everythink ok.
That is problem if you want rendering active shortcut depended selected root page or parent page.
<f:for each="{myNavigation}" as="item"> <li> <a href="{item.link}" class="{f:if(condition: item.active, then:' active')} {f:if(condition: '({item.data.doktype} == 4 && {item.data.shortcut} == {data.uid})', then: 'current')} {f:if(condition: item.current, then:' current')}" {f:if(condition: item.target, then: ' target="{item.target}"')} title="{item.title}">{item.title}</a> </li> </f:for>
Actions