Skip to content

Instantly share code, notes, and snippets.

@Mykola-Veryha
Created January 26, 2020 14:28
Show Gist options
  • Select an option

  • Save Mykola-Veryha/c0c304eee71e22192448d854a9fabb1d to your computer and use it in GitHub Desktop.

Select an option

Save Mykola-Veryha/c0c304eee71e22192448d854a9fabb1d to your computer and use it in GitHub Desktop.
editor_xss_filter_alter in Drupal 8
<?php
/**
* Implements hook_editor_xss_filter_alter().
*/
function MODULE_NAME_editor_xss_filter_alter(
&$editor_xss_filter_class,
FilterFormatInterface $format,
FilterFormatInterface $original_format = NULL
) {
$editor_xss_filter_class = '\Drupal\MODULE_NAME\EditorXssFilter\StandardWithStyles';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment