ikimea/ckeditor-bundle

This package is abandoned and no longer maintained. The author suggests using the egeloen/ckeditor-bundle package instead.

Integrate CKEditor with Symfony2

Installs: 420

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master 2013-04-24 19:12 UTC

This package is auto-updated.

Last update: 2022-02-01 12:20:32 UTC


README

Use IvoryCKEditorBundle instead

##Ckeditor

CKEditor est un éditeur de texte pour être utilisé dans les pages Web. Il s'agit d'un éditeur WYSIWYG, ce qui signifie que le texte en cours d'édition sur il semble aussi semblables que possible aux utilisateurs résultats ont quand le publier. Il apporte les fonctionnalités d'édition web communes trouvées sur les applications de bureau d'édition telles que Microsoft Word et OpenOffice.

Features

  • Symfony2 integration

Installation with Symfony 2.1 and composer

Just add the following line to your projects composer.json require section:

"ikimea/ckeditor-bundle": "dev-master"

Enable the module

<?php
// app/AppKernel.php

public function registerBundles()
{
    return array(
        new Ikimea\CKEditorBundle\CKEditorBundle(),
        // ...
    );
}
$ ./app/console assets:install web --symlink

Configuration

Simply configure as many paths as needed with the given parameters:

# app/config.yml
ikimea_ck_editor:
    lang : fr
    src : /bundles/ikimeackeditor/js/ckeditor/
    skin: moono
    toolbar:
      - ['Format']
      - ['Bold','Italic']
      - ['Outdent','Indent','Blockquote']
      - ['NumberedList','BulletedList']
      - ['-','Link','Unlink','Anchor','-','Table']
      - ['Maximize','Source']

Usage

/** @var $builder FormBuilderInterface */
$builder
    ->add('content', 'ckeditor')