zoukankan      html  css  js  c++  java
  • yii2.0 添加组件baidu ueditor

    下载uditor git clone https://github.com/BigKuCha/yii2-ueditor-widget.git

    将下载的项目放到 common/wdigets目录上 修改命名空间

    或者

    安装

    Either run

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

    or add

    "kucha/ueditor": "*"
    

    to the require section of your composer.json file.

    应用

    controller:

    public function actions()
    {
        return [
            'upload' => [
                'class' => 'kuchaueditorUEditorAction',
            ]
        ];
    }
    

    view:

    echo kuchaueditorUEditor::widget(['name' => 'xxxx']);
    

    或者:

    echo $form->field($model,'colum')->widget('kuchaueditorUEditor',[]);
    

    说明

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

    配置相关

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

    简单实例:

    use kuchaueditorUEditor;
    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一样)

    简单实例:

    public function actions()
    {
        return [
            'upload' => [
                'class' => 'kuchaueditorUEditorAction',
                'config' => [
                    "imageUrlPrefix"  => "http://www.baidu.com",//图片访问路径前缀
                    "imagePathFormat" => "/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}" //上传保存路径
                    "imageRoot" => Yii::getAlias("@webroot"),
                ],
            ]
        ];
    }
  • 相关阅读:
    [PHP]搭建Laravel心路历程
    [python爬虫]爬取贴吧某页美女图片+爬取糗百美女图片
    [Python2.7]python关于sys.agrv的使用
    [渗透测试]Sqlmap使用参数说明
    摘录的关于代码维护性的文章片段
    Python文本处理
    增加layer---待完成
    Python小程序——线性时间排序
    Python小程序——快排算法
    Python学习——多进程学习
  • 原文地址:https://www.cnblogs.com/jasonxiaoqinde/p/7509193.html
Copyright © 2011-2022 走看看