对于CKEditor 4.4,在config.js中,会有一个部分用于选择要使用的插件以及它们应该如何组合。
这样的事情:
config.toolbar = [
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ], items: [ 'Find', 'Replace', '-', 'SelectAll', '-', 'Scayt' ] },
{ name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'] },
{ name: 'links', items: [ 'Link', 'Unlink', 'Anchor', 'magicformcustom' ] },
{ name: 'insert', items: [ 'Table', 'HorizontalRule', 'SpecialChar'] },
{ name: 'colors', items: [ 'TextColor', 'BGColor' ] },
];
// Toolbar groups configuration.
config.toolbarGroups = [
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'styles' },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'colors' }
];
但是,当我在CKEditor 4.6中的config.js中搜索这些内容时,它们就消失了。由于我需要在我的网站的不同部分使用不同的插件,我不想使用在线自定义构建器。我应该在哪里添加/删除插件?
答案 0 :(得分:2)
您可以在实例化CKEditor时在网页内添加/删除插件:
CKEDITOR.replace('editor1', {
extraPlugins: 'iframedialog,uploadimage,divarea,youtube',
removePlugins: 'pastetext,pastefromword'
});
您可以在网页内选择工具栏中显示的项目,如下所示:
CKEDITOR.replace('editor1', {
toolbar: [
{ name: 'document', items: [ 'Source', 'Save' ] },
{ name: 'clipboard', items: [ 'Undo', 'Redo' ] },
{ name: 'editing', items: [ 'SelectAll' ] },
{ name: 'basicstyles', items: [ 'Bold', 'Italic', '-', 'RemoveFormat' ] },
{ name: 'paragraph', items: [ 'NumberedList', 'BulletedList', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight' ] },
{ name: 'insert', items: [ 'Image', 'Table', 'Smiley' ] },
{ name: 'styles', items: [ 'Font', 'FontSize' ] },
{ name: 'colors', items: [ 'TextColor', 'BGColor' ] },
{ name: 'tools', items: [ 'Maximize' ] }
]
});
您可以在此处查看插件的名称:https://github.com/ckeditor/ckeditor-dev/tree/master/plugins
此外,在Toolbar Configurator中,您可以检查列出组和项目的基本和高级配置程序类型,并将它们复制到配置文件中。
答案 1 :(得分:0)
有很多方法可以设置CKEditor配置,您可以在Setting CKEditor Configuration文档中阅读更多相关信息。这里的主要问题是您正在更改默认CKEditor配置文件(config.js
)的内容,并且每次升级都会覆盖您的更改。为避免这种情况,请使用custom configuration file或define the configuration in-page。