(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…') |
|||
| Line 1: | Line 1: | ||
| − | + | {{CKFinder_2.x Plugins Introduction}} | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | } | ||
| − | |||
== Enabling ASP Plugins == | == Enabling ASP Plugins == | ||
Latest revision as of 11:50, 18 May 2010
CKFinder is a plugin-based application and as such it 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';
};
Enabling ASP Plugins
To add a plugin to CKFinder, upload it to the plugins folder and add an include statement in the ASP configuration file (config.asp):
<!-- #INCLUDE file="plugins/imageresize/plugin.asp" -->