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