Configuration Examples

How do I use a different preset?

Instead of using the default "default" preset, you can change this, for example to "full", using page TSconfig:

EXT:my_sitepackage/Configuration/page.tsconfig
RTE.default.preset = full
Copied!

Of course, the preset must already exist, or you must define it. rte_ckeditor ships with presets "minimal", "default" and "full".

Additionally, you can set specific presets for specific types of textfields.

For example to use preset "full" for the field "bodytext" of all content elements:

EXT:my_sitepackage/Configuration/page.tsconfig
RTE.config.tt_content.bodytext.preset = full
Copied!

To use preset "minimal" for the field "bodytext" of only content elements with ctype="text":

EXT:my_sitepackage/Configuration/page.tsconfig
RTE.config.tt_content.bodytext.types.text.preset = minimal
Copied!

For more examples, see RTE in "TSconfig Reference".

How do I create my own preset?

In your sitepackage extension:

In ext_localconf.php, replace my_extension with your extension key, replace my_preset and MyPreset.yaml with the name of your preset.

EXT:my_sitepackage/ext_localconf.php
$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['my_preset']
   = 'EXT:my_extension/Configuration/RTE/MyPreset.yaml';
Copied!

In Configuration/RTE/MyPreset.yaml, create your configuration, for example:

EXT:my_sitepackage/Configuration/RTE/MyPreset.yaml
# Import basic configuration
imports:
  - { resource: "EXT:rte_ckeditor/Configuration/RTE/Processing.yaml" }
  - { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Base.yaml" }
  - { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Plugins.yaml" }
# Add configuration for the editor
# For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config
editor:
  config:
    # Include custom CSS
    contentsCss:
      - "EXT:my_extension/Resources/Public/Css/rte.css"
Copied!

See also the note for editor.config.contentsCss.

How do I customize the toolbar?

The toolbar can be customized individually by configuring required toolbar items in the YAML configuration. The following configuration shows the toolbar configuration of the minimal editor setup included in file EXT:rte_ckeditor/Configuration/RTE/Minimal.yaml:

EXT:my_sitepackage/Configuration/RTE/MyPreset.yaml
# Minimal configuration for the editor
editor:
  config:
    toolbar:
      items:
        - bold
        - italic
        - '|'
        - clipboard
        - undo
        - redo
Copied!

The '|' can be used as a separator between groups of toolbar items.

Additional configuration options are available in the official CKEditor 5 Toolbar documentation

Grouping toolbar items in drop-downs

To save space in the toolbar or to arrange the features thematically, it is possible to group several items into a dropdown as shown in the following example:

EXT:my_sitepackage/Configuration/RTE/MyPreset.yaml
# Minimal configuration for the editor
editor:
  config:
    toolbar:
      items:
        - bold
        - italic
        - { label: 'Additional', icon: 'threeVerticalDots', items: [ 'specialCharacters', 'horizontalLine' ] }
Copied!

How do I allow a specific tag?

Allowed content in CKEditor5 is to be configured via the General HTML Support plugin option config.htmlSupport.

EXT:my_sitepackage/Configuration/RTE/MyPreset.yaml
# Allow the <iframe> tag with all attributes, all classes and all styles:
editor:
  config:
    htmlSupport:
      allow:
        - { name: 'iframe', attributes: true, classes: true, styles: true }
Copied!

How do I configure the font plugin?

New in version 12.4.12

In order to use the font plugin, the RTE configuration needs to be adapted:

EXT:my_sitepackage/Configuration/RTE/MyPreset.yaml
editor:
  config:
    toolbar:
      items:
        # add button to select font family
        - fontFamily
        # add button to select font size
        - fontSize
        # add button to select font color
        - fontColor
        # add button to select font background color
        - fontBackgroundColor

    fontColor:
      colors:
        - { label: 'Orange', color: '#ff8700' }
        - { label: 'Blue', color: '#0080c9' }
        - { label: 'Green', color: '#209d44' }

    fontBackgroundColor:
      colors:
        - { label: 'Stage orange light', color: '#fab85c' }

    fontFamily:
      options:
        - 'default'
        - 'Arial, sans-serif'

    fontSize:
      options:
        - 'default'
        - 18
        - 21

    importModules:
      - { 'module': '@ckeditor/ckeditor5-font', 'exports': [ 'Font' ] }
Copied!

More information can be found in the official documentation of CKEditor.

How do I create a custom plugin?

With CKEditor 5 the plugin architecture has changed and CKEditor 4 plugins are not compatible with CKEditor 5. It is advised to read the CKEditor 4 to 5 migration to understand the conceptual changes, also related to plugins.

Writing a custom plugin for CKEditor 5 can be done in TypeScript or JavaScript, using the CKEditor5 plugin system.

In this example, we integrate a simple timestamp plugin to CKEditor 5. Make sure to replace <my_extension> with your extension key.

  1. Create the plugin file

    Add the following ES6 JavaScript code:

    EXT:<my_extension>/Resources/Public/JavaScript/Ckeditor/timestamp-plugin.js
    import { Plugin } from '@ckeditor/ckeditor5-core';
    import { ButtonView } from '@ckeditor/ckeditor5-ui';
    
    export class Timestamp extends Plugin {
      static pluginName = 'Timestamp';
    
      init() {
        const editor = this.editor;
    
        // The button must be registered among the UI components of the editor
        // to be displayed in the toolbar.
        editor.ui.componentFactory.add(Timestamp.pluginName, () => {
          // The button will be an instance of ButtonView.
          const button = new ButtonView();
    
          button.set({
            label: 'Timestamp',
            withText: true
          });
    
          // Execute a callback function when the button is clicked
          button.on('execute', () => {
            const now = new Date();
    
            // Change the model using the model writer
            editor.model.change(writer => {
    
              // Insert the text at the user's current position
              editor.model.insertContent(writer.createText(now.toString()));
            });
          });
    
          return button;
        });
      }
    }
    Copied!
  2. Register the ES6 JavaScript

    EXT:<my_extension>/Configuration/JavaScriptModules.php
    <?php
    
    return [
        'dependencies' => ['backend'],
        'tags' => [
            'backend.form',
        ],
        'imports' => [
            '@my-vendor/my-package/timestamp-plugin.js' => 'EXT:my_extension/Resources/Public/JavaScript/Ckeditor/timestamp-plugin.js',
        ],
    ];
    
    Copied!
  3. Include the plugin in the CKEditor configuration

    EXT:<my_extension>/Configuration/RTE/MyPreset.yaml
    editor:
      config:
        importModules:
          - { module: '@my-vendor/my-package/timestamp-plugin.js', exports: [ 'Timestamp' ] }
        toolbar:
          items:
            - bold
            - italic
            - '|'
            - clipboard
            - undo
            - redo
            - '|'
            - timestamp
    
    Copied!

    The importModules item in line 4 imports the previously registered ES6 module. The timestamp item in line 14 adds the plugin to the toolbar.

  4. Use the plugin

    The custom timestamp plugin in the editor

    The custom timestamp plugin in the editor