[转]Yii框架添加在线编辑器FCKeditor

转载自: http://hi.baidu.com/zys1234/blog/item/28ec49fd0866ac1b09244d21.html

注意:本教程使用的FCKeditor版本是:2.6.6,点击下 载地址

需求:

  • Yii 1.0 或更新的版本
  • FCKEditor
  • FCKEditor integration widget:这里使用的版本是 0.0.4,点击下 载

安装:

  • 解压fckeditor-integration-0.0.4.zip到 protected/extensions。
  • 解压FCKeditor:假设我们的应用的URL是http://localhost/musicdream/,实际目录是C:\wamp \www\musicdream\,将fckeditor解压至C:\wamp\www\musicdream\,这时可以看到一个目录C:\wamp \www\musicdream\fckeditor,里面就是fckeditor所有的文件。

使用:
在一个视图文件(例如C:\wamp\www\musicdream\protected\views\artist\_create.php)中:

<?php
$this
->widget('application.extensions.fckeditor.FCKEditorWidget',array(
'model'     =>  $model,
'attribute' => 'intro',//属性的名字
'height'    =>  '500px',//高度
'width'     =>  '100%',//宽度
'fckeditor' =>  Yii::app()->basePath.'/../fckeditor/fckeditor.php', //该配置和具体环境有关
'fckBasePath' => Yii::app()->baseUrl.'/fckeditor/', // 该配置和具体环境有关
'config' => array('ToolbarStartExpanded'=>false),//配置,这里设置的是默认不展开工具条
'editorTemplate' => 'full'
)
); 
?>
posted on 2011-08-21 01:01  DavidYanXW  阅读(392)  评论(0编辑  收藏  举报