我想在后端设置一个复选框以默认选中。
在我的情况下,它是showinpreview
文件中的字段/typo3conf/ext/news/Configuration/TCA/tx_news_domain_model_media.php
。
我将值更改default
为 1,但它没有效果:
'showinpreview' => [
'exclude' => 1,
'label' => $ll . 'tx_news_domain_model_media.showinpreview',
'config' => [
'type' => 'check',
'default' => 1
]
],
当我检查 tt_content 的 TCA 文件是否有选中的复选框时,它看起来像这样:
'sectionIndex' => [
'exclude' => 1,
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:sectionIndex',
'config' => [
'type' => 'check',
'default' => 1,
'items' => [
'1' => [
'0' => 'LLL:EXT:lang/locallang_core.xlf:labels.enabled'
]
]
]
],
我看到的唯一区别是items
. 但我真的不明白这个 item-value 的作用。