integration module of CKEditor for Kohana 3.3
In you controller:
class Controller_Abstract extends Controller_Template
{
public $template = 'layouts/main';
function before()
{
parent::before();
$this->template->editor = '';
}
function after()
{
$this->template->editor = Ckeditor::instance();
parent::after();
}
In you 'layouts/main.php' file add: ```html <title>Cool site</title> editor('name', 'Lorem ipsum...', array('width' => 400)); ?> ```