TYPO3:自定义内容元素 - TCA字段配置

时间:2017-03-04 15:10:53

标签: typo3 typoscript fluid fluid-styled-content

我按照教程在TYPO3中实现自定义内容元素。我不明白如何配置后端字段。

这是我对tt_content的重写:

$GLOBALS['TCA']['tt_content']['types']['my_custom_ce'] = [
    'showitem'         => '
            --palette--;' . $frontendLanguageFilePrefix . 'palette.general;general,
            --linebreak--, header;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:header_formlabel,
            --linebreak--, date;Datum,
            --linebreak--, media;Media,
            --linebreak--, bodytext;text,
];

我希望例如更改“bodytext”字段的textarea大小。我阅读了官方的TCA参考文献,但仍然没有得到它的工作原理

1 个答案:

答案 0 :(得分:1)

textarea fild大小的变化在

中完成

$GLOBALS['TCA']['tt_content']['columns']['bodytext']['config'] etc.

查看TCA参考中的详细信息。

这会更改所有CE的字段大小。据我所知,不可能仅针对一个CE进行更改。