1 | <?php |
||
18 | class AnchorRaw extends AbstractHelper |
||
19 | { |
||
20 | /** |
||
21 | * |
||
22 | * Returns an anchor tag with text left unescaped. |
||
23 | * |
||
24 | * @param string $href The anchor href specification. |
||
25 | * |
||
26 | * @param string $text The text for the anchor. |
||
27 | * |
||
28 | * @param array $attr Attributes for the anchor. |
||
29 | * |
||
30 | * @return string |
||
31 | * |
||
32 | */ |
||
33 | 2 | public function __invoke($href, $text, array $attr = array()) |
|
44 | } |
||
45 |