You are here

function panopoly_wysiwyg_module_implements_alter in Panopoly WYSIWYG 7

Implementation of hook_module_implements_alter()

File

./panopoly_wysiwyg.module, line 116

Code

function panopoly_wysiwyg_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'wysiwyg_editor_settings_alter') {
    $group = $implementations['panopoly_wysiwyg'];
    unset($implementations['panopoly_wysiwyg']);
    $implementations['panopoly_wysiwyg'] = $group;
  }
}