Project

General

Profile

Bug #82810

Updated by Thorben Nissen over 6 years ago

In the processing, the named properties are evaluated using ContentObjectRenderer::stdWrapValue, but adding sub properties causes exception in MenuProcessor::validateConfiguration. 

 To allow the full stdWrap capabilities, e.g. using fields from the content element, the sub properties must be allowed. 

 Example: 

 <pre><code class="php"> 
 dataProcessing { 
     10 = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor 
     10 { 
         levels { 
             field = someLevelFieldFromTheRecord 
             ifEmpty = 1 
         } 
     } 
 } 
 </code></pre> 

Back