私の標準コンテンツ要素text & media
では、RTE ( htmlarea
、Rich-Text-Editor) のフルスクリーン モードが正常に動作しています。
しかし、拡張機能を (拡張機能ビルダー経由で) 書きましたが、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'
)
)
),
),
誰も問題を知っていますか?ご協力いただきありがとうございます。
よろしく、ステファン