コード例 #1
0
ファイル: Section.php プロジェクト: famoser/php-frame
 public function __construct($id, $customNode = "section")
 {
     parent::__construct($customNode);
     $this->setId($id);
 }
コード例 #2
0
ファイル: Form.php プロジェクト: famoser/php-frame
 public function getHtml()
 {
     $button = new Button($this->submitText);
     $this->addContent($button);
     return parent::getHtml();
 }