Actions
Bug #102243
openEpic #99669: CKEditor5 Collection
RTE CKEditor5 "externalPlugins" configuration is not migrated
Status:
Under Review
Priority:
Should have
Assignee:
-
Category:
RTE (rtehtmlarea + ckeditor)
Target version:
Start date:
2023-10-24
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The following CKEditor config loaded and configured the wordcount plugin in TYPO3 v11, but does not in TYPO3 v12.4.0-v12.4.7:
editor:
externalPlugins:
wordcount:
resource: "EXT:rte_ckeditor/Resources/Public/JavaScript/Contrib/plugins/wordcount/plugin.js"
maxCharCount: 100
maxWordCount: 50
showCharCount: true
showRemaining: true
Note that this was not the recommended v11 config for "internal" plugins, but it did work and was used according to Josef Glatz (who reported this).
Note that the equivalent "official" v11 style config works and is properly migrated:
editor:
config:
extraPlugins:
- wordcount
wordcount:
maxCharCount: 100
maxWordCount: 50
showCharCount: true
showRemaining: true
Ideally both formats would be supported in TYPO3 v12.
Actions