Line 6: | Line 6: | ||
* [[/Access Control|Access Control]] | * [[/Access Control|Access Control]] | ||
* [[/Images|Images]] | * [[/Images|Images]] | ||
− | |||
− | |||
* [[/Resource Types|Resource Types]] | * [[/Resource Types|Resource Types]] | ||
** [[/Resource Types/Built-in|Built-in resource types]] | ** [[/Resource Types/Built-in|Built-in resource types]] |
Revision as of 12:23, 18 May 2010
Server Side Configuration
CKFinder configuration in the PHP language is based on editing the config.php file. To learn more go throughout the following sections:
JavaScript Configuration
CKFinder configuration in JavaScript is based on editing the config.js
file.
Unlike the PHP configuration, it is more focused on the interface.
Below you will find some most commonly used configuration settings:
For the list of all available configuration options refer to the CKFinder API documentation.
Example
Below you can find a sample config.js
file.
CKFinder.customConfig = function( config ) { config.skin = 'v1'; config.language = 'fr'; };