Esempio n. 1
0
 public function __construct($action, $method, $properties = array())
 {
     parent::__construct('', $properties);
     $this->tag = "form";
     $this->action = $action;
     $this->method = $method;
 }
Esempio n. 2
0
 public function __construct($src, $alt, $properties = array())
 {
     parent::__construct('', $properties);
     $this->tag = "img";
     $this->src = $src;
     $this->alt = $alt;
 }
Esempio n. 3
0
 public function __construct($content)
 {
     parent::__construct($content);
     $this->tag = "aside";
 }
Esempio n. 4
0
 public function __construct($content)
 {
     parent::__construct($content);
     $this->tag = "header";
 }
Esempio n. 5
0
 public function __construct($content, $properties = array())
 {
     parent::__construct($content, $properties);
     $this->tag = "span";
 }
Esempio n. 6
0
 public function __construct($content)
 {
     // hello
     parent::__construct($content);
     $this->tag = "section";
 }