8a551494
Yarik
test
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
use common\modules\comment\models\Comment;
use common\modules\comment\widgets\CommentWidget;
echo \yii\widgets\ListView::widget([
'dataProvider' => $dataProvider,
'itemView' => '_review_comment_view',
'options' => [
'tag' => 'ul',
'class' => 'proektant-comments style',
],
'itemOptions' => [
'tag' => 'li',
'class' => CommentWidget::$baseClass[ 'comment_container' ],
'data' => [
'form' => $commentClass->formName(),
],
],
'layout' => "{items}\n{pager}",
]);
|