每个CType专用的RTE配置

问题描述 投票:0回答:1

我想为用户提供TYPO3 8.7中某些自定义内容元素的最小RTE。

我发现这个旧方法here但它与TYPO3 8的ckeditor不兼容。

RTE.config.tt_content.bodytext.types.ccc_teasertext {
    showButtons = bold, italic, underline, link, chMode, orderedlist, unorderedlist
    RTEHeightOverride = 600
}

RTE.config.tt_content.bodytext.types.ccc_introtext {
    showButtons = bold, italic, chMode
    RTEHeightOverride = 300
}

如何将RTE.config与新的ckeditor语法一起使用,如RTE.tt_content.types.textmedia.bodytext.preset = minimal

ckeditor typo3-8.x
1个回答
0
投票

https://stackoverflow.com/a/55391407/4062341

同事TYPO3开发人员gautamsinh mori指出我here解决问题的方法:

不要在PageTS中配置RTE,而是在每个内容的TCA覆盖元素中配置如下:

$GLOBALS['TCA']['tt_content']['types']['myCustomContentElement']=[
    'showitem' => '
--palette--; LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xml:palette.general; general,header,subheader,header_link,bodytext,image,
--div--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xml:tabs.appearance,
--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xml:palette.frames;frames,
--div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.access,
--palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.visibility;visibility,
--palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.access;access,
--div--;LLL:EXT:lang/locallang_tca.xlf:sys_category.tabs.category, categories, tx_gridelements_container, tx_gridelements_columns
',
    'columnsOverrides' => [
        'bodytext' => [
            'config' => [
                'enableRichtext' => true,
                'richtextConfiguration' => 'minimal'
            ]
        ]
    ]
];

注意:'minimal'是预设。

© www.soinside.com 2019 - 2024. All rights reserved.