2

我想在后端设置一个复选框以默认选中。

在我的情况下,它是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 的作用。

4

3 回答 3

4

更改此值的最简单方法是使用一些 pageTS 覆盖 TCA。将以下内容添加到保存新闻记录的文件夹的页面中。

TCAdefaults.sys_file_reference.showinpreview = 1

请参阅https://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/TCEform/Index.html

对于较旧的 EXT:news 版本,请使用:TCAdefaults.tx_news_domain_model_media.showinpreview = 1

于 2016-09-14T18:29:46.253 回答
1

该字段的值在showinpreview中设置news/Configuration/TCA/Overrides/sys_file_reference.php。在那里应用您的更改,您会很高兴。

但请注意:更新新闻扩展后,您的更改将丢失。

于 2016-09-13T15:24:35.283 回答
1

刚刚检查过-这对我有用

'checkbox' => array(
        'exclude' => 0,
        'label' => 'My Label',
        'config' => array(
            'type' => 'check',
            'default' => '1'
        )
    ),
于 2016-09-13T13:22:18.430 回答