(Created page with 'CKFinder is a plugin-based application and as such can be relatively easy extended. == Enabling JavaScript Plugins == To add a plugin to CKFinder, upload it to the plugins fold…') |
(Template contents proof-read and formatted) |
||
Line 1: | Line 1: | ||
− | CKFinder is a plugin-based application and as such can be relatively | + | __TOC__ |
+ | {{#CUSTOMTITLE:Using CKFinder Plugins}} | ||
+ | CKFinder is a plugin-based application and as such can be extended relatively easily. | ||
== Enabling JavaScript Plugins == | == Enabling JavaScript Plugins == | ||
+ | To add a plugin to CKFinder, upload it to the <code>plugins</code> folder and enable it by using the <code>[http://docs.cksource.com/ckfinder_2.x_api/symbols/CKFinder.config.html#.extraPlugins extraPlugins]</code> configuration option in the <code>config.js</code> file: | ||
− | + | <source lang="javascript"> | |
− | |||
− | <source> | ||
CKFinder.customConfig = function( config ) | CKFinder.customConfig = function( config ) | ||
{ | { |
Revision as of 11:02, 1 April 2011
Contents
CKFinder is a plugin-based application and as such can be extended relatively easily.
Enabling JavaScript Plugins
To add a plugin to CKFinder, upload it to the plugins
folder and enable it by using the extraPlugins
configuration option in the config.js
file:
CKFinder.customConfig = function( config ) { config.extraPlugins = 'dummy'; };