You are here

function n1ed_ckeditor_settings_alter in N1ED - Visual editor as CKEditor plugin with Bootstrap support 7

Removing 'iframe' plugin due to N1ED handles IFrames better and will conflict with default add-on

File

./n1ed.module, line 66

Code

function n1ed_ckeditor_settings_alter(array &$settings, &$conf) {
  $settings['removePlugins'] = 'iframe';
  $conf['removePlugins'] = 'iframe';
}