src/views/elements/search/_forum_search_topics.php
<?php /** * Podium Module * Yii 2 Forum Module * @author Paweł Bizley Brzozowski <pawel@positive.codes> * @since 0.1 */ use yii\helpers\Html; $typeName = $type == 'topics' ? Yii::t('podium/view', 'threads') : Yii::t('podium/view', 'posts'); ?><div class="panel panel-default"> <div class="panel-heading" role="tab" id="forumSearch"> <h4 class="panel-title">Identical blocks of code found in 2 locations. Consider refactoring.<?php if (!empty($query) && !empty($author)): ?> <?= Yii::t('podium/view', 'Search for {type} with "{query}" by "{author}"', ['query' => Html::encode($query), 'author' => Html::encode($author), 'type' => $typeName]) ?><?php elseif (!empty($query) && empty($author)): ?> <?= Yii::t('podium/view', 'Search for {type} with "{query}"', ['query' => Html::encode($query), 'type' => $typeName]) ?><?php elseif (empty($query) && !empty($author)): ?> <?= Yii::t('podium/view', 'Search for {type} by "{author}"', ['author' => Html::encode($author), 'type' => $typeName]) ?><?php else: ?> <?= Yii::t('podium/view', 'Search for {type}', ['type' => $typeName]) ?><?php endif; ?> </h4> </div> <div id="collapseSearch" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="forumSearch"> <?= $this->render('/elements/search/_threads_search_topics', ['dataProvider' => $dataProvider, 'type' => $type]) ?> </div></div> <div class="panel panel-default"> <div class="panel-body small"> <?= $this->render('/elements/forum/_icons') ?> </div></div>