bajadev/yii2-ckeditor
Composer 安装命令:
composer require bajadev/yii2-ckeditor
包简介
Yii2 CKEditor
关键字:
README 文档
README
CKEditor for Yii2 with file manager & upload
Install with composer:
"bajadev/yii2-ckeditor": "*"
or
composer require bajadev/yii2-ckeditor "*"
Controller:
public function actions()
{
return [
'browse-images' => [
'class' => 'bajadev\ckeditor\actions\BrowseAction',
'quality' => 80,
'maxWidth' => 800,
'maxHeight' => 800,
'useHash' => true,
'url' => '@web/contents/',
'path' => '@frontend/web/contents/',
],
'upload-images' => [
'class' => 'bajadev\ckeditor\actions\UploadAction',
'quality' => 80,
'maxWidth' => 800,
'maxHeight' => 800,
'useHash' => true,
'url' => '@web/contents/',
'path' => '@frontend/web/contents/',
],
];
}
View:
<?php echo $form->field($model, 'content')->widget(CKEditor::className(), [
'editorOptions' => [
'preset' => 'full', /* basic, standard, full
'inline' => false,
'filebrowserBrowseUrl' => 'browse-images',
'filebrowserUploadUrl' => 'upload-images',
'extraPlugins' => 'imageuploader',
],
]); ?>
统计信息
- 总下载量: 47.46k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-11-21