WYSIWYG is now supported (a quick solution):
https://github.com/bigin/imanager
Here is an example:
component
https://github.com/bigin/imanager
Here is an example:
component
PHP Code:
<?php
$manager = new ImController();
ImCategory::setCategory('Ckeditor');
$manager->runModelMethod('gen_register', array('my_editor_field'));
$items = $manager->getModelValue('items_ordered_struct');
foreach($items as $item)
{
echo html_entity_decode($item['my_editor_field'], ENT_QUOTES, 'UTF-8');
}
?>