在我的标准内容元素中,RTE(富文本编辑器)text & media
的全屏模式运行良好。htmlarea
但是 - 我已经写了一个扩展(通过扩展生成器),如果我尝试全屏使用 RTE,我会遇到以下错误:
Module wizard_rich_text_editor is not configured
这是我的 TCA,我的错误在哪里?'TYPO3-RTE' 工作正常,所以我的以下代码中一定有错误。你怎么看?
'description' => array(
'exclude' => 1,
'label' => 'LLL:EXT:xyz/Resources/Private/Language/locallang_db.xlf:tx_xyz_domain_model_product.description',
'config' => array(
'type' => 'text',
'cols' => 40,
'rows' => 15,
'eval' => 'trim',
'wizards' => array(
'RTE' => array(
'icon' => 'wizard_rte2.gif',
'notNewRecords'=> 1,
'RTEonly' => 1,
'module' => array(
'name' => 'wizard_rich_text_editor',
'urlParameters' => array(
'mode' => 'wizard',
'act' => 'wizard_rte.php'
)
),
'title' => 'LLL:EXT:cms/locallang_ttc.xlf:bodytext.W.RTE',
'type' => 'script'
)
)
),
),
有谁知道这个问题?谢谢你的帮助。
问候,斯特凡