alpiiscky / yii2-comments
Yii2 的评论模块
dev-master
2018-01-08 07:16 UTC
Requires
This package is not auto-updated.
Last update: 2024-09-21 17:39:28 UTC
README
yii2 的评论
安装
composer require "alpiiscky/yii2-comments:*"
或
"alpiiscky/yii2-comments": "*"
依赖关系
扩展是一个对 ogheo/yii2-comments
扩展的修改版本,针对 webvimark/module-user-management
进行了调整,并做了一些小修改。
迁移
php yii migrate/up --migrationPath=@vendor/alpiiscky/yii2-comments/src/migrations
配置
'modules' => [
'comments' => [
'class' => 'alpiiscky\comments\Module',
]
]
如果需要评论直接发布而不经过审核,则在项目配置文件 params
中设置变量 'new_comments' => 1
使用
use alpiiscky\comments\widget\Comments;
echo Comments::widget();
高级使用
use alpiiscky\comments\widget\Comments;
echo Comments::widget([
'model' => $model,
'model_key' => $model_key,
]);