| 123456789101112131415161718 |
- <?php
- require_once dirname(__FILE__) . '/' . 'Node.php';
- class UI_NodeSelfClosing extends UI_Node {
- public $tagName, $props;
- function __construct($tagName = null, $props = null) {
- $this->tagName = $tagName;
- $this->props = $props;
- }
- function __toString() {
- return '<' . $this->tagName . $this->attributesToString() . '/>';
- }
- }
|