2017 © Pedro Peláez
 

library ueditor

desc

image

kucha/ueditor

desc

  • Tuesday, May 8, 2018
  • by BigKuCha
  • Repository
  • 17 Watchers
  • 148 Stars
  • 17,432 Installations
  • JavaScript
  • 8 Dependents
  • 0 Suggesters
  • 68 Forks
  • 16 Open issues
  • 8 Versions
  • 11 % Grown

The README.md

百度UEditor

Latest Stable Version Total Downloads, (*1)

安装

Either run, (*2)

$ php composer.phar require kucha/ueditor "*"

or add, (*3)

"kucha/ueditor": "*"

to the require section of your composer.json file., (*4)

应用

controller:, (*5)

public function actions()
{
    return [
        'upload' => [
            'class' => 'kucha\ueditor\UEditorAction',
        ]
    ];
}

view:, (*6)

echo \kucha\ueditor\UEditor::widget(['name' => 'xxxx']);

或者:, (*7)

echo $form->field($model,'colum')->widget('kucha\ueditor\UEditor',[]);

说明

ueditor只支持2种语言,en-uszh-cn,默认跟随系统语言 Yii::$app->language,可以通过2种方式设置,1.修改系统语言,在main.php(高级版) 或者web.php(基础版)添加'language' => 'zh-CN',。2.实例化的时候配置语言选项,见下边配置, (*8)

配置相关

编辑器相关配置,请在view 中配置,参数为clientOptions,比如定制菜单,编辑器大小等等,具体参数请查看UEditor官网文档

简单实例:, (*9)

use \kucha\ueditor\UEditor;
echo UEditor::widget([
    'clientOptions' => [
        //编辑区域大小
        'initialFrameHeight' => '200',
        //设置语言
        'lang' =>'en', //中文为 zh-cn
        //定制菜单
        'toolbars' => [
            [
                'fullscreen', 'source', 'undo', 'redo', '|',
                'fontsize',
                'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'removeformat',
                'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|',
                'forecolor', 'backcolor', '|',
                'lineheight', '|',
                'indent', '|'
            ],
        ]
]);
文件上传相关配置,请在controller中配置,参数为config,例如文件上传路径等;更多参数请参照 config.php (跟UEditor提供的config.json一样)

简单实例:, (*10)

public function actions()
{
    return [
        'upload' => [
            'class' => 'kucha\ueditor\UEditorAction',
            'config' => [
                "imageUrlPrefix"  => "http://www.baidu.com",//图片访问路径前缀
                "imagePathFormat" => "/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}" //上传保存路径
                "imageRoot" => Yii::getAlias("@webroot"),
            ],
        ]
    ];
}

The Versions

08/05 2018

dev-master

9999999-dev

desc

  Sources   Download

MIT

by Avatar BigKuCha

15/01 2017

1.21

1.21.0.0

desc

  Sources   Download

MIT

by Avatar BigKuCha

06/02 2015

1.2

1.2.0.0

desc

  Sources   Download

null

by Avatar BigKuCha

02/02 2015

1.1

1.1.0.0

desc

  Sources   Download

null

by Avatar BigKuCha

30/01 2015

1.0.3

1.0.3.0

desc

  Sources   Download

null

by Avatar BigKuCha

30/01 2015

1.0.2

1.0.2.0

desc

  Sources   Download

null

by Avatar BigKuCha

29/01 2015

1.0.1

1.0.1.0

desc

  Sources   Download

null

by Avatar BigKuCha

29/01 2015

1.0

1.0.0.0

desc

  Sources   Download

null

by Avatar BigKuCha