kindeditor整合进yii框架
/** * kindeditor * 源文件 : www/js/kindeditor/ * 功能 : 富文本编辑器,优于ckeditor,支持多种显示插入代码的样式。 * 形式 : 现以components的方式整合到yii中(修改自其自带的php demo) * 目录 : www/protected/componts/editor/ (整合进yii后的基础目录) * www/protected/componts/editor.php (接口文件) * www/js/kindeditor/ (源文件路径) * www/protected/controllers/EditoruploadController.php (处理文件的调用地址) * 案例 : www/protected/views/post/_form.php */ 首先根据kindeditor的demo中的例子,将kindeditor添加到表单中: <div class="row"> <?php echo $form->labelEx($model, 'content'); ?> <?php echo CHtml::activeTextArea($model, 'content', array('id'=>'editor_id')); ?> <?php echo $form->error($model, 'content