예제 #1
0
파일: Button.php 프로젝트: sillevl/htmllib
 public function __construct($content, $properties = array())
 {
     parent::__construct($content, $properties);
     $this->tag = "button";
 }
예제 #2
0
파일: header.php 프로젝트: sillevl/htmllib
 public function __construct($content)
 {
     parent::__construct($content);
     $this->tag = "header";
 }
예제 #3
0
파일: Section.php 프로젝트: sillevl/htmllib
 public function __construct($content)
 {
     // hello
     parent::__construct($content);
     $this->tag = "section";
 }