Skip to content

ckfinder/ckfinder-docs-samples-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CKFinder 3 - Sample PHP Plugins

This repository contains ready-to-use code samples created for the CKFinder PHP connector documentation.

Installation

  1. Clone this repository (or download ZIP).
  2. Move downloaded plugins to the CKFinder plugins directory, so the structure looks like below:
plugins
├── DiskQuota
│   ├── DiskQuota.php
├── GetFileInfo
│   ├── GetFileInfo.php
└── UserActionsLogger
    └── UserActionsLogger.php

To enable plugins, add their names to the plugins configuration option in the connector configuration file (by default config.php):

$config['plugins'] = [
	'DiskQuota', 'GetFileInfo', 'UserActionsLogger'
];

License

Copyright (c) 2015, CKSource - Frederico Knabben. All rights reserved. For license details see: LICENSE.md.