aka03 / yii2-comments
Yii2 Simple Comments Widget
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- codeception/codeception: 2.*
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2025-03-14 05:15:48 UTC
README
Yii2 Simple Comments Widget
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist aka03/yii2-comments "*"
or add
"aka03/yii2-comments": "*"
to the require section of your composer.json
file.
Migration
php yii migrate --migrationPath=@vendor/aka03/yii2-comments/src/migrations
Usage
Once the extension is installed, simply use it in your code by :
<?= \aka03\comments\CommentWidget::widget([ 'page' => $this->context->id, 'page_id' => $model->id, ]); ?>
If you want to use this widget in module, change page
attribute into:
'page' => $this->context->module->id
Attributes
page
using for indicate current controller for showing comments.
page_id
using for indicate current id. If this attribute is set each page
will have own comments.
For example if current route = 'site/about', you can add following code:
<?= \aka03\comments\CommentWidget::widget([ 'page' => 'site', 'page_id' => 'about' ]); ?>
For simple page
you can set page_id
= null, or do not even set.
<?= \aka03\comments\CommentWidget::widget([ 'page' => 'about' ]); ?>
guestCanLeaveComment
(boolean, default = true). If user is not logged in, he can't leave comments.
showCommentsForGuests
(boolean, default = true). Show comments for guest users ().
showRelativeTime
(boolean, default = true). Show time as relative. False means datetime will be shown.
avatarField
(string, default = 'avatar'). User avatar field in database.
If this field not found, default avatar will be used.
Full code should looks like:
<?= \aka03\comments\CommentWidget::widget([ 'page' => $this->context->id, 'page_id' => $model->id, 'guestCanLeaveComment' => true, 'showCommentsForGuests' => true, 'showRelativeTime' => true, 'avatarField' => 'avatar', ]); ?>
Tests
codecept run
For coverage add following lines into indet-test.php file, before Application->run().
include dirname(dirname(__DIR__)) . '/vendor/aka03/yii2-comments/c3.php'; define('MY_APP_STARTED', true);
Change c3_url
to frontend/index-test.php, in codeception.yml file. (For example http://localhost/index-test.php
).
For acceptance tests:
- do not forget install selenium-server;
- change
url
in tests/acceptance.suite.yml file; - add following lines to test config file:
'bootstrap' => [ 'aka03\comments\modules\testPage\Bootstrap' ], 'modules' => [ 'testPage' => [ 'class' => 'aka03\comments\modules\testPage\Module', ], ]