文件名称:yii2-comments:Yii2的评论模块
文件大小:933KB
文件格式:ZIP
更新时间:2024-05-21 13:56:12
yii2 yii2-comments yii2-comments-module yii2-comments-manager PHP
yii2评论 Yii2的注释模块。 安装 安装此扩展的首选方法是通过 。 尝试 composer require "ogheo/yii2-comments:*" 或添加 "ogheo/yii2-comments": "*" 到composer.json文件的require部分。 配置 数据库迁移 php yii migrate/up --migrationPath=@vendor/ogheo/yii2-comments/src/migrations 模块设置 'modules' => [ 'comments' => [ 'class' => 'ogheo\comments\Module', ] ] 可以在“注释”模块文件中查看所有可用选项。 用法 将以下示例之一添加到视图文件。 基本例子 模型不是强制性的,注释将与当前URL相关联。 use ogheo