Changes between Initial Version and Version 1 of Ticket #6221
- Timestamp:
- Aug 30, 2010, 8:45:58 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6221
- Property Keywords Image Plugin added
-
Property
Component
changed from
General
toUI : Dialogs
-
Ticket #6221 – Description
initial v1 1 1 When you remove a plugin by using the removePlugins setting it will not affect the image plugin. Even when you do the following, it will still open the image dialog by doublecklicking on an image: 2 2 {{{ 3 3 $settings['removePlugins'] = 'scayt,menubutton,contextmenu,image,forms'; 4 4 }}} 5 5 So it seems the image plugin is still loaded by ckeditor. 6 6 7 7 The only way to effectively remove the image plugin and prevent loading is to exclude it from the plugin list: 8 8 {{{ 9 9 $settings['plugins'] = 'a11yhelp,basicstyles,blockquote,button,clipboard,colorbutton,colordialog,contextmenu,div,elementspath,enterkey,entities,find,font,format,horizontalrule,htmldataprocessor,indent,justify,keystrokes,list,liststyle,maximize,newpage,pagebreak,pastefromword,pastetext,popup,preview,removeformat,resize,save,showblocks,showborders,sourcearea,stylescombo,table,tabletools,specialchar,tab,toolbar,undo,wysiwygarea,wsc'; 10 }}}