コード例 #1
0
ファイル: Button.php プロジェクト: comptech-soft/bootstrap
 public function __construct()
 {
     parent::__construct('button');
     $this->addClass(['btn'])->attribute('type', 'button');
 }
コード例 #2
0
 public function __construct()
 {
     parent::__construct('a');
     $this->addClass(['btn']);
     $this->attribute('href', 'javascript:;');
 }