@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace Apps\ActiveRecord; |
4 | 4 | |
5 | -use Ffcms\Core\App as AppMain; |
|
6 | 5 | use Ffcms\Core\Arch\ActiveModel; |
7 | 6 | use Ffcms\Core\Helper\FileSystem\File; |
8 | 7 | use Ffcms\Core\Helper\Type\Str; |
@@ -15,7 +15,6 @@ |
||
15 | 15 | use Ffcms\Core\Helper\Type\Str; |
16 | 16 | use Gregwar\Image\Image; |
17 | 17 | use Apps\ActiveRecord\Content as ContentRecord; |
18 | -use Apps\ActiveRecord\ContentRating; |
|
19 | 18 | use Apps\Model\Api\Content\ContentRatingChange; |
20 | 19 | |
21 | 20 | class Content extends ApiController |
@@ -100,12 +100,12 @@ |
||
100 | 100 | </div> |
101 | 101 | <div class="meta"> |
102 | 102 | <?php if ((int)$catConfigs['showRating'] === 1) { |
103 | - echo \App::$View->render('content/_rate', [ |
|
104 | - 'id' => $item['id'], |
|
105 | - 'canRate' => $item['canRate'], |
|
106 | - 'rating' => $item['rating'] |
|
107 | - ]); |
|
108 | - } ?> |
|
103 | + echo \App::$View->render('content/_rate', [ |
|
104 | + 'id' => $item['id'], |
|
105 | + 'canRate' => $item['canRate'], |
|
106 | + 'rating' => $item['rating'] |
|
107 | + ]); |
|
108 | + } ?> |
|
109 | 109 | |
110 | 110 | <span class="spaced hidden-xs"><i class="fa fa-comments"></i> |
111 | 111 | <a href="#"><?= __('Comments') ?>: <span itemprop="commentCount">0</span></a> |
@@ -159,12 +159,12 @@ |
||
159 | 159 | <div class="col-md-12"> |
160 | 160 | <div class="pull-left"> |
161 | 161 | <?php if ($properties['rating']) { |
162 | - echo \App::$View->render('content/_rate', [ |
|
163 | - 'id' => $model->id, |
|
164 | - 'rating' => $model->rating, |
|
165 | - 'canRate' => $model->canRate |
|
166 | - ]); |
|
167 | - } ?> |
|
162 | + echo \App::$View->render('content/_rate', [ |
|
163 | + 'id' => $model->id, |
|
164 | + 'rating' => $model->rating, |
|
165 | + 'canRate' => $model->canRate |
|
166 | + ]); |
|
167 | + } ?> |
|
168 | 168 | <?= \App::$View->render('content/_rateJs') ?> |
169 | 169 | </div> |
170 | 170 | <div class="pull-right"> |