2017-08-08 77 views
0

如何使用TCEForms/pageTS訂購商品? 例如,如果另一個header_layout(101)加入後1TsConfig中的訂單商品/ TCEForms

TCEFORM.tt_content.header_layout { 
addItems { 
      101 = LLL:EXT:site_template/Resources/Private/Language/locallang_be.xlf:header_layout.custom_header 
     } 
     orderItems = 1,101,2,3 
    } 

例如放置此像orderItems,但這不是一個有效的pageTs屬性。

回答

0

您可以使用您爲此字段定義的自定義itemsProcFuncdocumentation)更改該值。例如。在Configuration/TCA/Overrides/tt_content.php自己的分機(documentation):

$GLOBALS['TCA']['tt_content']['columns']['header_layout']['config']['itemsProcFunc'] = 'MyVendor\MyExtension\TtContentHeaderLayout->sortItems';

相關問題