.. toctree:: :hidden: installation migration usage/index
The bundle integrates CKEditor into Symfony via the Form Component. It
automatically registers a new type called ckeditor
which can be fully
configured. This type extends the textarea one, meaning all textarea options
are available.
Here, an example where we customize the CKEditor config:
use FOS\CKEditorBundle\Form\Type\CKEditorType; $builder->add('field', CKEditorType::class, [ 'config' => [ 'uiColor' => '#ffffff', //... ], ]);
To install the bundle, please, read the :doc:`Installation documentation <installation>`.
As IvoryCKEditorBundle was abandoned, FriendsOfSymfony took this bundle over, to help you easily migrate :doc:`just follow our guide <migration>`.
If you want to learn more, this documentation covers the following use cases: