Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function decorate(Cell $cell) |
||
14 | { |
||
15 | $url = (string) $cell->getUnescapedValue(); |
||
16 | // disable auto escape so we can display <a> html tag in cell |
||
17 | $cell->getColumn()->setAutoescape(false); |
||
18 | |||
19 | $cell->setValue( |
||
20 | $cell->getColumn()->getGrid()->getGridHelper()->getHtmlBuilder()->tag('a', $url, ['href' => $url]) |
||
21 | ); |
||
22 | } |
||
23 | } |
||
24 |