コード例 #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";
 }