| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function getDataCellValue($model, $key, $index) |
||
| 19 | { |
||
| 20 | if ($model->{$this->attribute}) { |
||
| 21 | return sprintf('<span data-toggle="tooltip" data-placement="top" title="updated at: %s">%s</span>', |
||
| 22 | $this->grid->formatter->asDate($model->stats_updated_at), |
||
| 23 | $this->grid->formatter->format($model->{$this->attribute}, $this->dataFormat) |
||
| 24 | ); |
||
| 25 | } |
||
| 26 | |||
| 27 | return ''; |
||
| 28 | } |
||
| 29 | } |