如何将TYPO3系统类别描述字段修改为RTE字段

时间:2017-06-14 13:55:17

标签: typo3

在TYPO3 7.6中,我正在尝试将后端的系统类别的“描述”字段转换为RTE字段。有谁知道我是否应该这样做以及如何做到这一点?如果我可以简单地改变那个领域的tca,我会得到我需要的东西,但我猜它并不那么简单。

1 个答案:

答案 0 :(得分:3)

您可以在扩展程序中创建文件

Configuration/TCA/Overrides/sys_category.php

文件内容:

 <?php
   defined('TYPO3_MODE') or die();

   $tempColumns = [
    'description' => array(
        'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_tca.xlf:sys_category.description',
        'config' => array(
            'type' => 'text',
            'cols' => 40,
            'rows' => 15,
            'eval' => 'trim'
        ),
        'defaultExtras' => 'richtext[]:rte_transform[mode=ts_links]'
    ),
];

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTCAcolumns(
    'sys_category',
    $tempColumns,
    1
);