﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
10005	Offer a simpler way to enable external plugins	Wiktor Walc		"Currently enabling external plugins is a two step process. First one have to call `CKEDITOR.plugins.addExternal()`, then add the plugin to `config.extraPlugins`.

It would be cool if there was an easier way to do this, without searching in the documentation how to point CKEditor to a plugin in a different folder.

The current string sytax could be preserved, plus we could allow users to specify an object with `plugin => url`:

{{{
config.extraPlugins = {
  plugin1 : url1,
  plugin2 : url2
}
}}}

If one wants to mix external and non-external plugins, something like this could do the trick:
{{{
config.extraPlugins = {
  plugin1 : url1,
  plugin2 : url2,
  plugin3 : '', // equals config.extraPlugins = 'plugin3'
}
}}}
  

"	New Feature	confirmed	Low		General	4.0		Drupal	
