覆盖Powermail TCA以为TYPO3(V8.7.16)中的现有字段添加RTE

时间:2018-10-24 14:58:50

标签: typo3-8.x powermail

我要更改EXT:powermail / configuration / TCA / tx_powermail_domain_model_field.php中的powermail“描述”字段

$fieldsTca = [
  'columns' => [
  'description' => [

使其在后端中显示为RTE。 到目前为止,直接在Powermail中进行更改即可:

'description' => [
        'exclude' => 0,
        'label' => 'LLL:EXT:powermail/Resources/Private/Language/locallang_db.xlf:' .
            Field::TABLE_NAME . '.description',
        'config' => [
            'type' => 'text',
            'cols' => 40,
            'rows' => 6,
            'softref' => 'typolink_tag,images,email[subst],url',
        ],
        'defaultExtras' => 'richtext[]:rte_transform[mode=tx_examples_transformation-ts_css]'
    ],

但是在my_extension中我已经覆盖了Powermail模板的地方该如何处理呢?所以基本上:如何覆盖Powermail的TCA。

0 个答案:

没有答案