如何禁用WYSIWYG Editor v1.1.1上下文菜单

时间:2012-12-05 18:51:53

标签: ckeditor

如何禁用WYSIWYG Editor v1.1.1上下文菜单 我试过这个但是没有用

CKEDITOR.editorConfig = function( config )
{
config.removePlugins = 'contextmenu';
//also try this below code
config.removePlugins = 'contextmenu,liststyle,tabletools';
};

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

使用模块覆盖设置

function MODULENAME_wysiwyg_editor_settings_alter(&$settings, $context) {
  if ($context['profile']->editor == 'ckeditor') {
    $settings['removePlugins'] = 'scayt,menubutton,contextmenu';
   }
}

不要忘记将MODULENAME替换为您自己的模块名称。