NodeSelfClosing.php 342 B

123456789101112131415161718
  1. <?php
  2. require_once dirname(__FILE__) . '/' . 'Node.php';
  3. class UI_NodeSelfClosing extends UI_Node {
  4. public $tagName, $props;
  5. function __construct($tagName = null, $props = null) {
  6. $this->tagName = $tagName;
  7. $this->props = $props;
  8. }
  9. function __toString() {
  10. return '<' . $this->tagName . $this->attributesToString() . '/>';
  11. }
  12. }