Add config action for FilterFormat::setFilterConfig()

Created on 19 August 2022, over 2 years ago
Updated 6 January 2025, 3 months ago

Problem/Motivation

A common config action requirement is to add filter config to an existing text format (filter format).

A sample use case is to allow the full_html filter format to not have a dependency on the editor module.

Proposed resolution

Expose a config action for FilterFormat::setFilterConfig().

Sample action:

config:
  actions:
    filter.format.full_html:
      setFilterConfig:
        editor_file_reference
        -
          id: editor_file_reference
          provider: editor
          status: true
          weight: 11
          settings: {  }

Remaining tasks

User interface changes

API changes

Data model changes

Feature request
Status

Fixed

Version

10.0

Component

Code

Created by

🇨🇦Canada nedjo

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • I'm unable to update my ckeditor - full_html to activate a custom filter, via the recipes.
    I've tried two ways:

    config:
      actions:
        filter.format.full_html:
          setFilterConfig:
            custom_filter
            -
              id: custom_filter
              provider: custom_module
              status: true
              weight: 11
              settings: {  }
    

    and

    config:
      actions:
        filter.format.full_html:
          setFilterConfig:
            instance_id: custom_filter
            configuration:
              -
                id: custom_filter
                provider: custom_module
                status: true
                weight: 0
                settings: { }
    

    But the filter is not activated (he is well visible in the BO). Does my recipe structure is wrong ?

Production build 0.71.5 2024