Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
24 | public function displayPrepaidAmount() |
||
25 | { |
||
26 | $result = Yii::t('hipanel/finance/tariff', 'No panel / {hipanelLink}', ['hipanelLink' => 'HiPanel']); // todo: add faq link |
||
27 | if ($this->resource->tariff->getResourceByType('isp5')->quantity > 0) { |
||
28 | $result .= ' / ' . Yii::t('hipanel/finance/tariff', 'ISP manager'); |
||
29 | } |
||
30 | |||
31 | return $result; |
||
32 | } |
||
33 | |||
49 |