asmoday74 / yii2-ckeditor5
CKEditor 5 WYSIWYG小部件用于Yii2
1.0.2
2019-09-24 20:23 UTC
Requires
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2024-09-25 11:36:59 UTC
README
CKEditor 5 WYSIWYG小部件用于Yii2
安装
安装此扩展的首选方式是通过composer。
运行以下命令之一:
composer require --prefer-dist asmoday74/yii2-ckeditor5 "*"
或将以下内容添加到您的composer.json
文件的require部分:
"asmoday74/yii2-ckeditor5": "*"
用法
使用示例
use asmoday74\ckeditor5\EditorClassic; ... <?= $form->field($model, 'content')->widget(EditorClassic::className(),[ 'clientOptions' => [ 'language' => 'en', 'uploadUrl' => 'upload', //url for upload files 'uploadField' => 'image', //field name in the upload form ] ]); ?>
use asmoday74\ckeditor5\EditorInline; //..or EditorBalloon ... <?php EditorInline::begin([ 'name' => 'editor-inline', 'clientOptions' => [ 'language' => 'en', 'uploadUrl' => 'upload' ] ]);?> <h1>The three greatest things you learn from traveling</h1> <p>Like all the great things on earth traveling teaches us by example. Here are some of the most precious lessons I’ve learned over the years of traveling.</p> <?php EditorInline::end();?>
在CKEditor 5的官方网站https://ckeditor.npmjs.net.cn/ckeditor-5/上查找详细文档和示例