| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function getDataCellValue($model, $key = null, $index = null) |
||
| 27 | { |
||
| 28 | $value = parent::getDataCellValue($model, $key, $index); |
||
| 29 | return Html::tag( |
||
| 30 | 'span', |
||
| 31 | ArrayHelper::getValue(Log::listActions(), $value), |
||
| 32 | [ |
||
| 33 | 'class' => ArrayHelper::getValue($this->actionIconsMap, $value, self::LABEL_DEFAULT), |
||
| 34 | ] |
||
| 38 |