Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
34 | public function run() |
||
35 | { |
||
36 | if ($this->topics) { |
||
37 | $html = '<ul class="list-inline">'; |
||
38 | foreach ($this->topics as $item => $label) { |
||
39 | $label = Yii::t('hipanel:ticket', Html::encode($label)); |
||
40 | $html .= Html::tag('li', Html::tag('span', $label, ['class' => 'label ' . $this->_getColor($item)])); |
||
41 | } |
||
42 | $html .= '</ul>'; |
||
43 | echo $html; |
||
44 | } |
||
45 | } |
||
46 | } |
||
47 |