ziixdk/admin-ext-ckeditor

Integrate CKEDITOR into ziix-admin

Maintainers

Package info

github.com/ziixdk/admin-ext-ckeditor

Language:JavaScript

pkg:composer/ziixdk/admin-ext-ckeditor

Statistics

Installs: 11

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.11 2026-04-03 19:35 UTC

This package is auto-updated.

Last update: 2026-04-03 19:36:30 UTC


README

This is a ziix-admin extension that integrates CKEDITOR into the ziix-admin form.

Screenshot

field-ckeditor

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).