| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function indexRender($row, $column) |
||
| 35 | { |
||
| 36 | if($column->getOptionsFromTable()) { |
||
| 37 | $option = $column->getOptionsFromTable(); |
||
| 38 | return $row->{ $option['table'].'_'.$option['display_field'] }; |
||
| 39 | }else{ |
||
| 40 | $option = $column->getOptions(); |
||
| 41 | $key = $row->{ $column->getField() }; |
||
| 42 | return @$option[ $key ]; |
||
| 43 | } |
||
| 51 | } |