PHPackages                             kail520/ueditor - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. kail520/ueditor

ActiveLibrary

kail520/ueditor
===============

desc

v1.0.2(5y ago)012MITJavaScript

Since Dec 7Pushed 5y ago1 watchersCompare

[ Source](https://github.com/kail520/ueditor)[ Packagist](https://packagist.org/packages/kail520/ueditor)[ RSS](/packages/kail520-ueditor/feed)WikiDiscussions main Synced 5d ago

READMEChangelogDependenciesVersions (4)Used By (0)

百度UEditor
=========

[](#百度ueditor)

### 安装

[](#安装)

Either run

```
$ php composer.phar require kail520/ueditor "*"

```

or add

```
"kail520/ueditor": "*"

```

to the `require` section of your `composer.json` file.

### 应用

[](#应用)

controller:

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

```

view:

```
echo \kail520\\ueditor\UEditor::widget([]);

```

或者：

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

```

### 说明

[](#说明)

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

### 配置相关

[](#配置相关)

##### 编辑器相关配置，请在`view` 中配置，参数为`clientOptions`，比如定制菜单，编辑器大小等等，具体参数请查看[UEditor官网文档](http://fex-team.github.io/ueditor/)。

[](#编辑器相关配置请在view-中配置参数为clientoptions比如定制菜单编辑器大小等等具体参数请查看ueditor官网文档)

简单实例:

```
use \kail520\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', '|'
            ],
        ]
]);
```

简单实例:

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

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~53 days

Total

3

Last Release

1881d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/21029751?v=4)[kail520](/maintainers/kail520)[@kail520](https://github.com/kail520)

---

Top Contributors

[![kail520](https://avatars.githubusercontent.com/u/21029751?v=4)](https://github.com/kail520 "kail520 (1 commits)")

### Embed Badge

![Health badge](/badges/kail520-ueditor/health.svg)

```
[![Health](https://phpackages.com/badges/kail520-ueditor/health.svg)](https://phpackages.com/packages/kail520-ueditor)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
