xinyeweb/yii2-ueditor

yii2-ueditor

Installs: 50

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 0

Open Issues: 0

Language:JavaScript

Type:yii2-extension

dev-master 2016-05-09 06:29 UTC

This package is auto-updated.

Last update: 2024-04-16 19:21:57 UTC


README

yii2-ueditor

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist xinyeweb/yii2-ueditor:dev-master

or add

"xinyeweb/yii2-ueditor": "dev-master"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

public function actions()
{
    return [
        'upload' => [
            'class' => 'xinyeweb\ueditor\UEditorAction',
            'config' => [
                'imageRoot' => dirname(\Yii::$app->basePath).dirname(\Yii::getAlias('@web')). DIRECTORY_SEPARATOR . 'images_webroot',//圖片的根路径
                //'imageUrlPrefix' => 'http://www.baidu.com',
                //'imagePathFormat' =>  dirname(Yii::$app->basePath)."/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}" ,
            ]
        ]
    ];
}

使用:

<?= $form->field($model, 'description')->widget('\xinyeweb\ueditor\UEditor',[]) ?>