grozzzny / easyii2
Easyii2CMS
dev-master
2021-01-21 11:52 UTC
Requires
- php: >=5.6.0
- 2amigos/yii2-selectize-widget: ~1.0
- almasaeed2010/adminlte: v2.4.18
- bower-asset/jquery.switcher: *
- creocoder/yii2-nested-sets: 0.9.*
- grozzzny/widgets: dev-master
- yiisoft/yii2: ~2.0.14
- yiisoft/yii2-bootstrap: ~2.0.0
- yiisoft/yii2-swiftmailer: ~2.0.0
This package is auto-updated.
Last update: 2024-09-21 20:18:05 UTC
README
基于php框架Yii2的控制面板和工具。易于使用的网站CMS。
此仓库是开发包(yii2扩展)。
以下链接中可以找到完整信息
联系方式
请随时通过grozzzny@gmail.com给我发邮件
"autoload": {
"psr-4": {
"yii\\easyii2\\": "vendor/grozzzny/easyii2"
}
}
composer dumpautoload
###Redactor
$form->field($model, 'text')->widget(Redactor::className(),[ 'options' => [ 'minHeight' => 400, 'imageUpload' => Url::to(['/admin/redactor/upload', 'dir' => 'news']), 'fileUpload' => Url::to(['/admin/redactor/upload', 'dir' => 'news']), 'plugins' => [ "alignment", "clips", "counter", "definedlinks", "fontcolor", "fontfamily", "fontsize", "fullscreen", "filemanager", "imagemanager", "inlinestyle", "limiter", "properties", //"source", "table", //"textdirection", "textexpander", "video", "codemirror", ], 'codemirror:' => [ 'lineNumbers' => true, 'mode' => 'xml', 'indentUnit' => 4 ] ] ])