| Conditions | 8 |
| Paths | 20 |
| Total Lines | 30 |
| Lines | 4 |
| Ratio | 13.33 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | * @inheritdoc |
||
| 36 | * @throws ColumnRenderException |
||
| 37 | * @throws GridViewConfigException |
||
| 38 | */ |
||
| 39 | public function _renderValue($row) |
||
| 40 | { |
||
| 41 | if (is_array($row)) { |
||
| 42 | |||
| 43 | if (isset($row[$this->value]) && $row[$this->value] !== null) { |
||
| 44 | return $row[$this->value]; |
||
| 45 | } |
||
| 46 | |||
| 47 | } elseif (isset($row->{$this->value}) && $row->{$this->value} !== null) { |
||
| 48 | return $row->{$this->value}; |
||
| 49 | } |
||
| 50 | |||
| 51 | return $this->emptyValue; |
||
| 52 | } |
||
| 53 | } |