stepancher / yii2-content-module
Yii 2 内容模块
1.0.1
2015-04-02 07:01 UTC
Requires
This package is not auto-updated.
Last update: 2024-09-24 03:59:35 UTC
README
Yii 2 内容 - 实现网站文章添加的内容模块
功能
- 易于安装
- 与SEO标签协同工作
- 与图片协同工作
- 树形结构
安装
使用Composer
php composer.phar require --prefer-dist stepancher/yii2-content-module "*"
-
运行迁移 php yii migrate --migrationPath=@vendor/stepancher/yii2-content-module/migrations
-
在 common/config/main.php 中连接
'modules' => [ 'content' => [ 'class' => 'stepancher\content\Content', 'imageDir' => "@app/../upload/content", // 上传文件的图片 'imageUrl' => "/upload/content" // 图片的URL ], ],
- 在前端创建路由,例如第一个URL是所有文章的列表,第二个URL是单独的文章 'articles'=>'content/default/list', 'articles/'=>'content/default/show',
- 在后台创建路由 'content' =>'content/admin', 'content/'=>'content/admin/',
- 分配用户或角色的查看和编辑文章的权限