2017 © Pedro Peláez
 

yii2-extension yii2-ueditor

Yii2的百度UEditor扩展

image

crazydb/yii2-ueditor

Yii2的百度UEditor扩展

  • Sunday, February 4, 2018
  • by 疯狂的dabing
  • Repository
  • 7 Watchers
  • 34 Stars
  • 2,322 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 10 Forks
  • 3 Open issues
  • 15 Versions
  • 14 % Grown

The README.md

Yii2-UEditor-Extension

Yii2的百度UEditor扩展, (*1)

由于bower上的包是纯源码,需要用grunt打包后才能使用,因此扩展自带了1.4.3版本的UEditor资源包。, (*2)

扩展特点:, (*3)

  1. 支持多实例
  2. 支持缩略图(默认关闭)
  3. 支持缩放(默认关闭)
  4. 支持水印(默认关闭)
  5. 图片管理加载优化

安装

推荐使用 composer 来安装扩展., (*4)

使用如下命令安装:, (*5)

php composer.phar require --prefer-dist crazydb/yii2-ueditor "*"

或者将 "crazydb/yii2-ueditor": "*" 添加到项目的 composer.json 文件., (*6)

使用方法

安装完毕后,进行简单的配置即可使用。, (*7)

后端支持

1) 继承 crazydb\ueditor\UEditorController 来实现自己的后端。(推荐), (*8)

class EditorController extends crazydb\ueditor\UEditorController
{
    public function init(){
        parent::init();
        //do something
        //这里可以对扩展的访问权限进行控制
    }

    public function actionConfig(){
        //do something
        //这里可以对 config 请求进行自定义响应
    }

    // more modify ...
    // 更多的修改
}

通过继承来编写自己的 Controller,可以精细的控制每个 action 的响应,推荐使用这种方式使用。, (*9)

需要注意的是在 View 模板文件中使用扩展的时候需要指定 serverUrl 为自己编写的 controller 地址。, (*10)

2) 通过配置 controllerMap 使用默认的后端。, (*11)

修改配置文件,基础模板的配置文件是 config/web.php, 高级模板的配置文件是 config/main.php。, (*12)

    'controllerMap' => [
        'ueditor' => [
            'class' => 'crazydb\ueditor\UEditorController',
        ]
    ],

简单配置即可使用,还可以配置更多选项:, (*13)

    'controllerMap' => [
        'ueditor' => [
            'class' => 'crazydb\ueditor\UEditorController',
            'thumbnail' => false,//如果将'thumbnail'设置为空,将不生成缩略图。
            'watermark' => [    //默认不生存水印
                'path' => '', //水印图片路径
                'position' => 9 //position in [1, 9],表示从左上到右下的 9 个位置,即如1表示左上,5表示中间,9表示右下。
            ],
            'zoom' => ['height' => 500, 'width' => 500], //缩放,默认不缩放
            'config' => [
                //server config @see http://fex-team.github.io/ueditor/#server-config
                'imagePathFormat' => '/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}',
                'scrawlPathFormat' => '/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}',
                'snapscreenPathFormat' => '/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}',
                'catcherPathFormat' => '/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}',
                'videoPathFormat' => '/upload/video/{yyyy}{mm}{dd}/{time}{rand:6}',
                'filePathFormat' => '/upload/file/{yyyy}{mm}{dd}/{rand:4}_{filename}',
                'imageManagerListPath' => '/upload/image/',
                'fileManagerListPath' => '/upload/file/',
            ]
        ]
    ],

后端配置参考官网后端配置说明。, (*14)

扩展默认生成 200x200 的缩略图,缩略图大小可以通过 thumbnail 来控制。, (*15)

    'thumbnail' => ['height' => 200, 'width' => 200]

如果将 thumbnail 设置为 false,就不会生成缩略图。, (*16)

更多配置可以查看 UEditorController的 public 属性。, (*17)

在模板中使用

1) 使用 ActiveRecord, (*18)

就像使用普通的扩展一样。, (*19)

<?= $form->field($model, 'content')->widget(\crazydb\ueditor\UEditor::className()) ?>

或者, (*20)

<?= \crazydb\ueditor\UEditor::widget([
    'model' => $model,
    'attribute' => 'content',
]) ?>

还可以配置更多属性:, (*21)

<?= \crazydb\ueditor\UEditor::widget([
    'model' => $model,
    'attribute' => 'content',
    'config' => [
        //client config @see http://fex-team.github.io/ueditor/#start-config
        'serverUrl' => ['/ueditor/index'],//确保serverUrl正确指向后端地址
        'lang' => 'zh-cn',
        'iframeCssUrl' => Yii::getAlias('@web') . '/static/css/ueditor.css',// 自定义编辑器内显示效果
    ]
]) ?>

需要注意的是 serverUrl 属性,默认后端地址是 /ueditor/index,如果配置了多个后端,则需要分别指定。, (*22)

2) 当作普通表单使用, (*23)

<?= \crazydb\ueditor\UEditor::widget([
    'name' => $name,
    'value' => $value,
]) ?>

其他

编辑器内默认情况下行高为1,大段中文编辑显示效果非常差,但是可以通过设置 iframeCssUrl 来修改编辑器内显示效果。, (*24)

默认不支持内网 IP 图片远程采集,如果部署在内网且需要这个功能,请配置UEditorController::allowIntranettrue。, (*25)

相关链接

@see https://github.com/fex-team/ueditor, (*26)

The Versions

04/02 2018

dev-bugfixed

dev-bugfixed

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

14/06 2017

dev-master

9999999-dev

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

14/06 2017

1.6.4

1.6.4.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

01/06 2017

1.6.3

1.6.3.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

31/05 2017

1.6.2

1.6.2.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

13/05 2017

1.6.1

1.6.1.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

13/05 2017

1.6

1.6.0.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

07/07 2016

1.5

1.5.0.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

06/06 2016

1.4.1

1.4.1.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

06/06 2016

1.4

1.4.0.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

05/05 2016

1.3

1.3.0.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

17/09 2015

1.2

1.2.0.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

26/08 2015

1.1

1.1.0.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

22/07 2015

1.0

1.0.0.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor

16/12 2014

0.9

0.9.0.0

Yii2的百度UEditor扩展

  Sources   Download

MIT

The Requires

 

by Avatar 疯狂的dabing

yii2 ueditor