djfly/kindeditor

kindeditor for yii2.

安装: 198

依赖: 0

建议者: 0

安全: 0

星标: 4

关注者: 1

分支: 1

开放问题: 0

类型:yii2-widget

dev-master 2014-04-12 10:31 UTC

This package is not auto-updated.

Last update: 2024-09-14 15:58:06 UTC


README

kindeditor for yii2

#安装

安装此扩展的首选方式是通过 composer.

运行以下命令之一:

php composer.phar require djfly/kindeditor "*"

或者添加

"djfly/kindeditor": "*"

到您的 composer.json 文件的 require 部分。

并将 kindeditor 下载到 assets 目录,因为目前没有 composer 包提供 kindeditor。

#使用

<?=\djfly\kindeditor\KindEditor::widget([
    'id' => 'post-content',
    'model' => $model,
    'attribute' => 'content',
    'items' => [
        'langType' => Yii::$app->language, // 'en' , 'zh-CN'
        'height' => '300px',
        'themeType' => 'simple',
        'allowImageUpload' => true,
        'allowFileManager' => true,
        'uploadJson' => 'upload_json.php',
        'fileManagerJson' => '../php/file_manager_json.php',
        'items' => [
            'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
            'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
            'insertunorderedlist', '|', 'emoticons', 'image', 'link',
        ]
    ],
])?>

#文档

来源 https://github.com/kindsoft/kindeditor

官方 kindeditor http://kindeditor.net/