masihfathi/yii2-ckeditor

yii2 ckeditor

安装: 31

依赖: 0

建议者: 0

安全: 0

星星: 2

关注者: 2

分支: 0

开放问题: 0

语言:HTML

类型:yii2-extension

1.4 2017-10-02 15:28 UTC

This package is auto-updated.

Last update: 2024-09-12 04:46:18 UTC


README

yii2 ckeditor

安装

更新 MihailDev/yii2-ckeditor 包的 ckeditor 并添加 bidi 插件。安装此扩展的首选方法是使用 composer

可以运行

composer require masihfathi/yii2-ckeditor "1.4"

或者添加

"masihfathi/yii2-ckeditor": "1.4"

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

使用

一旦安装了扩展,只需在代码中使用它即可

use mihaildev\ckeditor\CKEditor;
use yii\helpers\Html;

CKEditor::widget([
    'editorOptions' => [
        'preset' => 'full', //basic, standard, full 
        'inline' => false, //false
    ]
]);

//ActiveForm

echo $form->field($post, 'content')->widget(CKEditor::className(),[
    'editorOptions' => [
        'preset' => 'full', //basic, standard, full
        'inline' => false, //false
    ],
]);