qu-modules/qu-ckeditor

ZF2 module for CKEditor

dev-master 2013-07-24 16:56 UTC

This package is not auto-updated.

Last update: 2024-04-27 11:59:15 UTC


README

ZF2 module for CKEditor

Release Notes

0.0.1-dev

  • Initiation CKEditor in zf2

0.0.2-dev

  • Initiation auto load class map
  • Fixed capitalization inconsistencies
  • Fixed the url of the file manager
  • Optional addition of the settings in the module or directly in the helper
  • Ability to configure the language and color

0.0.3-dev

  • Update CKEditor 4.1

Demo example

http://qumodules.com/

Requirements

Installation

  • Drag a folder into modules folder
  • QuAdminCompleteApp provider assets (look current version http://ckeditor.com/)
  • Enable the module application.config.php and configure the routes module.config.php

Installation by Composer

cd YourFolderProject/
php composer.phar self-update
php composer.phar require "qu-modules/qu-ckeditor":"dev-master"

Integration

  • Instance $ this-> QuCKEditor () in your project

#Sample

<textarea id="editor"></textarea>
    $this->QuCKEditor(
        'editor',
        array('width' => "100%",
            'height' => "300",
            'uiColor'=> '#FFFFFF',
        )
    );