1 | <?php |
||
12 | class Html extends AbstractFormatterProvider |
||
13 | { |
||
14 | /** |
||
15 | * Format the value as a html link |
||
16 | * |
||
17 | * @param string $value link |
||
18 | * @return string |
||
19 | */ |
||
20 | 2 | public function asLink($value) |
|
27 | |||
28 | /** |
||
29 | * Format the value as a html image |
||
30 | * |
||
31 | * @param string $value image url |
||
32 | * @return string |
||
33 | */ |
||
34 | 2 | public function asImage($value) |
|
42 | } |
||
43 |