0
点赞
收藏
分享

微信扫一扫

ueditor-for-yii 所见即所得富文本web编辑器


​​ueditor-for-yii​​



​​Ueditor是由百度web前端研发部开发的所见即所得富文本web编辑器,开源基于BSD协议。        ​​



最近看到百度开源的一个产品Ueditor 所见即所得富文本web编辑器,感觉很不错,最近又有一个项目,是用YiiFramework 开发的,就把Ueditor 用在这项目里了,于是就把它写成了extensions形式提供给大家下载!yii 地址: ​​http://www.yiiframework.com/extension/ueditor-for-yii/        ​​



由于文件大过2M上传不了到YII官方网站的extensions库里!不一会就好几个差评了!最来就把它上传到谷歌上面了!



如果有用到的话大家拿去吧!下载地址: ​​http://code.google.com/p/ueditor-for-yii/downloads/list        ​​



使用方法:



…how to use this extension…

把ueditor插件放到 extensions/ 在Html 调用

<?php   
$this->widget('ext.ueditor.Ueditor',
array(
'getId'=>'Article_content',
'textarea'=>"Article[content]",
'imagePath'=>'/attachment/ueditor/',
'UEDITOR_HOME_URL'=>'/',
));
?>

 订制Toolbars 方法

<?php   
$this->widget('ext.ueditor.Ueditor',
array(
'getId'=>'Settings_about',
'minFrameHeight'=>180,
'textarea'=>"Article[content]",
'imagePath'=>'/attachment/ueditor/',
'UEDITOR_HOME_URL'=>'/',
'toolbars'=>"'Undo','Redo','ForeColor', 'BackColor', 'Bold','Italic','Underline', 'JustifyLeft','JustifyCenter','JustifyRight', ,'InsertImage','ImageNone','ImageLeft','ImageRight','ImageCenter',",
));
?>

 关于UEditor

Ueditor概述 Ueditor是由百度web前端研发部开发的所见即所得富文本web编辑器,具有轻量,可定制,注重用户体验等特点,开源基于BSD协议,允许自由使用和使用代码 为什么使用Ueditor 体积小巧,性能优良,使用简单 分层架构,方便定制与扩展 满足不同层次用户需求,更加适合团队开发 丰富完善的中文文档 多个浏览器支持:Mozilla, MSIE, FireFox?, Maxthon,Safari 和Chrome 更好的使用体验 拥有专业QA团队持续支持,已应用在百度各大产品线上

举报

相关推荐

0 条评论