(Created page with 'CKFinder functionality can be extended with server side plugins. Althought the full source code of CKFinder server connector is available and it can be changed in any way, a much…') |
(Article contents proof-read) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | CKFinder functionality can be extended with server side plugins. | + | CKFinder functionality can be extended with server-side plugins. Although the full source code of the CKFinder server connector is available and can be modified in any way desired, a much better way of enhancing the CKFinder connector is to create a plugin. |
The main advantages of plugins are: | The main advantages of plugins are: | ||
* Upgrades are much easier. | * Upgrades are much easier. | ||
− | * The plugin code is in a single place. | + | * The plugin code is stored in a single place. |
− | * Plugins can be easily | + | * Plugins can be easily disabled when they are not needed anymore. |
Common use cases: | Common use cases: | ||
− | + | * Adding a new server-side command (i.e. <code>fileditor</code> and <code>imageresize</code> plugin). | |
− | * Adding new server side command (i.e. fileditor and imageresize plugin). | + | * Working with uploaded files (i.e. <code>watermark</code> plugin). |
− | * Working with uploaded | + | * Extending information returned by the <code>Init</code> command (i.e. <code>imageresize</code> plugin). |
− | * Extending |
Latest revision as of 07:09, 18 May 2011
CKFinder functionality can be extended with server-side plugins. Although the full source code of the CKFinder server connector is available and can be modified in any way desired, a much better way of enhancing the CKFinder connector is to create a plugin.
The main advantages of plugins are:
- Upgrades are much easier.
- The plugin code is stored in a single place.
- Plugins can be easily disabled when they are not needed anymore.
Common use cases:
- Adding a new server-side command (i.e.
fileditor
andimageresize
plugin). - Working with uploaded files (i.e.
watermark
plugin). - Extending information returned by the
Init
command (i.e.imageresize
plugin).