You are here

panopoly_wysiwyg.module in Panopoly 8.2

Same filename and directory in other branches
  1. 7 modules/panopoly/panopoly_wysiwyg/panopoly_wysiwyg.module

Hooks implementations for the Panopoly Wysiwyg module.

File

modules/panopoly/panopoly_wysiwyg/panopoly_wysiwyg.module
View source
<?php

/**
 * @file
 * Hooks implementations for the Panopoly Wysiwyg module.
 */
use Drupal\panopoly_wysiwyg\Plugin\Filter\FilterHtml;

/**
 * Implements hook_filter_info_alter().
 */
function panopoly_wysiwyg_filter_info_alter(&$definitions) {
  if (isset($definitions['filter_html'])) {
    $definitions['filter_html']['class'] = FilterHtml::class;
  }
}

Functions