snowsoft / oackeditor
Integrate CKEDITOR into open-admin
0.01
2023-10-02 13:41 UTC
Requires
- php: >=7.0.0
- ckeditor/ckeditor: 4.*
- laravel/framework: >=7.0
- snowsoft/open-admin: ~v0.01
Requires (Dev)
- laravel/laravel: ~7.0
- phpunit/phpunit: ~6.0
README
This is a open-admin
extension that integrates CKEDITOR
into the open-admin
form.
Screenshot
Installation
composer require open-admin-ext/ckeditor
Then
php artisan vendor:publish --tag=open-admin-ckeditor
Configuration
In the extensions
section of the config/admin.php
file, add some configuration that belongs to this extension.
'extensions' => [ 'ckeditor' => [ //Set to false if you want to disable this extension 'enable' => true, // Editor configuration 'config' => [ ] ] ]
The configuration of the editor can be found in CKEditor Documentation, such as configuration language and height.
'config' => [ 'language' => 'de', 'height' => 500, 'contentsCss' => '/css/frontend-body-content.css', ]
Usage
Use it in the form:
$form->ckeditor('content'); // Set config $form->ckeditor('content')->options(['lang' => 'fr', 'height' => 500,'contentsCss' => '/css/frontend-body-content.css']);
Problems?
If ckeditor is not showing up and tells you that it's not found run the lines below to clear the compiled services and packages.
php artisan optimize:clear
License
Licensed under The MIT License (MIT).