Feature #79356
closedConsider menu states for FSC Menu ViewHelper
0%
Description
Is it in the long run planned to let the fluid_styled_content Menu ViewHelpers also support menu states like current, active, ifsub etc?
That would come quite handy and having an official bulletproof TYPO3 menu rendering with Fluid might feel more correct than an own ViewHelper.
However if this is not considered I would resort to using a custom ViewHelper as before.
Updated by Riccardo De Contardi over 7 years ago
as far as I can see in version 8.7 the TYPO3\CMS\Frontend\DataProcessing\MenuProcessor
handles current
and active
states
Updated by Malte Koitka over 7 years ago
Riccardo, you're right. Looking at the new MenuProcessor this issue can be closed.
Updated by Wouter Wolters over 7 years ago
- Status changed from New to Closed
Closed as solved already.
Updated by Riccardo De Contardi over 7 years ago
IFSUB, CURIFSUB, ACTIFSUB are still not handled, am I right? Will they be implemented in the future?
Updated by Malte Koitka over 7 years ago
I guess these cases might simply be covered by a condition (IFSUB => if array children exist, CURIFSUB => if array children exist and current flag set) in the fluid template.
Updated by Riccardo De Contardi over 7 years ago
Malte Koitka wrote:
I guess these cases might simply be covered by a condition (IFSUB => if array children exist, CURIFSUB => if array children exist and current flag set) in the fluid template.
+1 I think you are right! I'll try it! Thanks!