jonlil / ckfinder-bundle
Installs: 20 241
Dependents: 1
Suggesters: 0
Security: 0
Stars: 11
Watchers: 7
Forks: 12
Open Issues: 9
Language:JavaScript
Type:symfony-bundle
Requires
- php: >=5.3.0
- egeloen/ckeditor-bundle: 3.*
- jonlil/ckfinder: 2.3.1
- symfony/assetic-bundle: >=2.1
- symfony/framework-bundle: >=2.1
Requires (Dev)
- phpunit/phpunit: *
- symfony/browser-kit: >=2.3,<2.4-dev
- symfony/css-selector: ~2.3
- symfony/twig-bundle: >=2.1
- symfony/validator: *
This package is not auto-updated.
Last update: 2017-08-04 06:36:21 UTC
README
since ckfinder is not available in any package manager this project does not work.
To make it work you need to download ckfinder by yourself and install it inside the vendor/jonlil/ckfinder
This is a ugly hack to make it work but if someone has the time I gladly take a PR that download the sources from ckfinders homepage and put them in the correct folder.
JonlilCKFinderBundle
- Check out the documentation on CKFinder.
- If you plan to configure ckeditor a little bit more, look at the IvoryCKeditorBundle.
- Installation
Add the following line in the require
section of your composer.json
:
for using CKEditor 4.4.6 and greater:
"jonlil/ckfinder-bundle": "3.*"
for using CKEditor 4.4.5 and less:
"jonlil/ckfinder-bundle": "2.*"
Register the bundle in the app/AppKernel.php
:
public function registerBundles() { $bundles = array( new Ivory\CKEditorBundle\IvoryCKEditorBundle(), new Jonlil\CKFinderBundle\JonlilCKFinderBundle('IvoryCKEditorBundle'), ); }
- Configuration
Routing
# app/config/routing.yml ck_finder: resource: "@JonlilCKFinderBundle/Resources/config/routing/routing.yml" prefix: /ckfinder
For usage with amazon s3
# app/config/config.yml jonlil_ck_finder: license: key: "" name: "" baseDir: "/" baseUrl: "http://s3.amazonaws.com" service: "s3" accessKey: "" secret: "" bucket: ""
There are also some optional parameters :
"thumbnailsEnabled": if you want to display thumbnails on the different images
"thumbnailsFile": to use a specific thumbnails to make a preview
"directAccess": if you have a direct access to the file forthe preview
"fileDelete", "fileRename", "fileUpload", "fileView": if you want to prevent some file action
"folderRename", "folderDelete", "folderCreate", "folderView": If you want to prevent some action on the folder
For usage with native php storage
jonlil_ck_finder: license: # optional, can be used in demo mode also key: "" name: "" baseDir: "%assetic.read_from%" baseUrl: "/userfiles/" # path where your files will be stored service: "php"
Authentication
# app/config/config.yml parameters: jonlil.ckfinder.customAuthentication: %kernel.root_dir%/...path your custom config.php or any other file
Write your own function CheckAuthentication() in your custom config.php
Examlple:
function CheckAuthentication() { isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized']; }
- Usage
# in your symfony2 form - add this public function buildForm (FormBuilderInterface $builder, array $options) { $builder ->add('title') ->add('text', 'ckfinder') ->add('createdAt') ->add('updatedAt') ; }
- Testing
This bundle provides a set of integration tests you should run whenever you make changes in the source code.
- Git clone the bundle.
- Execute
composer update
- Run
php vendor/bin/phpunit
- Todos
Fix amazon s3 thumbnails - Refer to this project https://github.com/jonlil/ckfinder
Security should be managed in CheckAuthentication()
. Look at the config.php
file for further details.