Blame view

frontend/views/company/_company_common_review.php 679 Bytes
225c5168   Yarik   test
1
2
  <?php
      /**
110087c2   Yarik   test
3
       * @var Comment $model
225c5168   Yarik   test
4
       */
110087c2   Yarik   test
5
      use common\modules\comment\models\Comment;
0eb4e7fc   Yarik   test
6
      use kartik\rating\StarRating;
225c5168   Yarik   test
7
8
9
  
  ?>
  <?php
110087c2   Yarik   test
10
      if(!empty( $model->rating )) {
0eb4e7fc   Yarik   test
11
12
13
14
15
          echo StarRating::widget([
              'name' => 'rating_company_review',
              'value' => $model->rating->value,
              'pluginOptions' => ['displayOnly' => true, 'size' => 'xxs']
          ]);
110087c2   Yarik   test
16
17
18
19
20
      }
  ?>
  <div class="company-performer-comments-autor">
      Отзыв от:
      <?php
b9a54f61   Yarik   test
21
          $model->getAuthor(' (Гость)');
110087c2   Yarik   test
22
23
24
25
      ?>
  </div>
  <div class="company-performer-comments-txt"><?= $model->text ?></div>
  <a href="#" class="company-comm-see-all"><span>Развернуть</span></a>