假设我们有一个这样的 dca 数组:
$GLOBALS['TL_DCA']['tl_member']['fields']['publicFields'] = array
(
...
'inputType' => 'checkbox',
'options' => array('value1' => "label1", 'value2' => "label2");,
'eval' => array('multiple'=>true, ...
);
现在我们想将 value1 的复选框设置为默认选中。
我试过了,但它不起作用:
$GLOBALS['TL_DCA']['tl_member']['fields']['publicFields']['default'][0] = 'value1';
我在https://de.contaowiki.org/Defaultwerte_vorbelegen上找到了描述。但它仅适用于单值字段,不适用于多个字段。