ziixdk / admin-ext-ckeditor
Integrate CKEDITOR into ziix-admin
Package info
github.com/ziixdk/admin-ext-ckeditor
Language:JavaScript
pkg:composer/ziixdk/admin-ext-ckeditor
v1.0.11
2026-04-03 19:35 UTC
Requires
- php: >=8.3.0
- laravel/framework: >=11.0
- ziixdk/admin: *
Requires (Dev)
- laravel/laravel: ~11.0
- phpunit/phpunit: ~6.0
README
This is a ziix-admin extension that integrates CKEDITOR into the ziix-admin form.
Screenshot
Installation
composer require ziixdk/admin-ext-ckeditor
Then
php artisan vendor:publish --tag=ziix-admin-ext-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).
