CKEditor fullscreen button for TYPO3 12¶
Offers a fullscreen button to the CKEditor config in TYPO3 12. You can add this button to your toolbar items in your custom rte config / preset. It does not add this button automatically to any of the default rte configs of TYPO3 12. Until TYPO3 11 the fullscreen button in the CKEditor was included in the default rte configs of the RTE. Since TYPO3 12 and due to the update to CKEditor 5 it is not a core feature any more, so this extension brings back the fullscreen button to the CKEditor. The CKEditor plugin itself was taken from https://github.com/leknoppix/ckeditor5-fullscreen and got adapted for usage in TYPO3.
Config:¶
There is no config for the extension after installing it.
Add the button into your own RTE preset¶
To add this button into your own RTE preset, import the yaml config in your preset:
imports:
- { resource: "EXT:rte_ckeditor_fullscreen/Configuration/RTE/PluginFullScreen.yaml" }
Then insert the button into your toolbar config:
...
toolbar:
items:
...
- fullScreen
...