kriss/yii2-wang-editor Yii2 wangEditor widget

extensioneditorwangeditor

Yii2 wangEditor widget

Yii2 wangEditor widget

v2.x 与 v1.x 版本之间存在差异,升级请注意

wangEditor 官网

安装

composer require kriss/yii2-wang-editor

使用

widget

<?php
use kriss\wangEditor\widgets\WangEditorWidget;

echo WangEditorWidget::widget([
    'name' => 'inputName',
    //'canFullScreen' => true, // 增加全屏的按钮
    //'customConfig' => [], // 扩展配置
]);
// or
echo $form->field($model, 'content')->widget(WangEditorWidget::class, [
    //'canFullScreen' => true,
]);

action

<?php

namespace admin\controllers;

use yii\web\Controller;
use kriss\wangEditor\actions\UploadAction;

class FileController extends Controller
{
    public function actions()
    {
        return [
            'wang-editor' => [
                'class' => UploadAction::class,
                'savePath' => '@webroot/uploads',
                'displayPath' => '@web/uploads',
            ],
        ];
    }
}

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



v2.2 is the latest of 6 releases



MIT license
Stats
9 github stars & 1 github forks
0 downloads in the last day
0 downloads in the last 30 days
1178 total downloads