83b0052c
Yarik
test
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
echo \common\modules\comment\widgets\CommentWidget::widget([
'context' => $this,
'model' => $company->className(),
'model_id' => $company->id,
'comment_class' => \common\modules\comment\models\Comment::className(),
'rating_class' => \common\modules\comment\models\Rating::className(),
'class_options' => [
'scenario' => is_int(\Yii::$app->user->getId()) ? \common\modules\comment\models\Comment::SCENARIO_USER : \common\modules\comment\models\Comment::SCENARIO_GUEST,
'user_id' => \Yii::$app->user->getId(),
'guestComment' => false,
'status' => \common\modules\comment\models\Comment::STATUS_ACTIVE,
],
'list_options' => [
'view' => 'list-comment-review',
],
'form_options' => [
'view' => 'form-comment-review',
'tag' => false,
],
'options' => [
'class' => 'proektant-comments-wr style',
],
]);
?>
|