| 1 | <?php |
||
| 18 | class ElementRaw extends AbstractHelper |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * |
||
| 22 | * Returns any kind of complete HTML element with attributes. |
||
| 23 | * |
||
| 24 | * @param string $tag The tag to generate. |
||
| 25 | * |
||
| 26 | * @param string $content The content of the element. |
||
| 27 | * |
||
| 28 | * @param array $attr Attributes for the tag. |
||
| 29 | * |
||
| 30 | * @return string |
||
| 31 | * |
||
| 32 | */ |
||
| 33 | 2 | public function __invoke($tag, $content, array $attr = array()) |
|
| 41 | } |
||
| 42 |