Image Toolbar for CKEditor

Requirements

  • CKEditor 4. At the moment, the plugin is only supported for CKEditor 4.x.
  • Browser's: We recommend using latest version of all the major browsers.

Installation (1/2): Copy the files

Extract the contents of the zip in you plugins directory, so it ends up like this:

ckeditor\
        ...
        images\
        lang\
        plugins\
               ...
               imagetoolbar\
                       plugin.js
                       docs\
                       icons\
               ...
        skins\
        themes\

 

Installation (2/2): Add the plugin to CKEditor

Now add the plugin in your config.js or custom js configuration file, adding a line like the following one:

config.extraPlugins = 'imagetoolbar';

If you're already using other extraPlugins, then you must add it to the end with a comma:

config.extraPlugins = 'imagesfromserver,imagetoolbar';

If desired, you can see other options to add the plugin to CKEditor