Blame view

frontend/views/site/comments.php 1.63 KB
464ede30   Alexey Boroda   -Global comments
1
2
3
4
5
6
7
8
9
10
  <?php
      
      use artbox\webcomment\models\CommentModel;
      use artbox\webcomment\widgets\CommentWidget;
      use yii\web\View;
      
      /**
       * @var View         $this
       * @var CommentModel $model
       */
e7c5af40   Timur Kastemirov   breadcrumbs
11
12
13
      
      $this->params[ 'breadcrumbs' ][] = \Yii::t('app', 'Комментарии');
      
464ede30   Alexey Boroda   -Global comments
14
  ?>
fc48eb62   Eugeny Galkovskiy   Отзывы
15
16
17
18
  <div id="content" class="feedback-wr">
      <div class="container">
          <div class="row">
              <div class="col-md-12">
fc48eb62   Eugeny Galkovskiy   Отзывы
19
20
21
22
23
24
25
                  <?php
                  echo CommentWidget::widget(
                      [
                          'model'             => $model,
                          'display_name'      => 'name',
                          'entityIdAttribute' => 'id',
                          'reply'             => true,
9b571190   Eugeny Galkovskiy   translates 1.5
26
                          'layout'            => "{list} {reply_form}<div class='comments-border'></div><h4 class='text-uppercase title-comment'>".\Yii::t('app', 'Оставить отзыв')."</h4>{form}",
fc48eb62   Eugeny Galkovskiy   Отзывы
27
28
29
30
31
32
33
34
35
36
37
38
                          'delete'            => false,
                          'more'              => [
                              'show_' => true,
                              'key'   => 2,
                          ],
                          'formView'          => '@frontend/views/site/comment/artbox_comment_form',
                          'listView'          => '@frontend/views/site/comment/artbox_comment_list',
                          'replyView'         => '@frontend/views/site/comment/artbox_comment_reply',
                          'itemView'          => '@frontend/views/site/comment/artbox_comment_item',
                      ]
                  );
                  ?>
464ede30   Alexey Boroda   -Global comments
39
  
fc48eb62   Eugeny Galkovskiy   Отзывы
40
41
42
43
              </div>
          </div>
      </div>
  </div>