コード例 #1
0
ファイル: formGroup.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'useRowLayout';
     $this->allowedAttributes[] = 'useCheckableLayout';
     $this->allowedAttributes[] = 'checkableLayoutClass';
     parent::init();
 }
コード例 #2
0
ファイル: tabpane.php プロジェクト: dev-lucid/html
 public function init()
 {
     parent::init();
     $this->addClass('tab-pane');
     $this->addClass('fade');
     $this->attributes['role'] = 'tabpanel';
 }
コード例 #3
0
ファイル: submit.php プロジェクト: dev-lucid/html
 public function init()
 {
     parent::init();
     $this->allowedAttributes[] = 'type';
     $this->type = 'submit';
     $this->tag = 'button';
 }
コード例 #4
0
ファイル: form.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'onsubmit';
     $this->allowedAttributes[] = 'enctype';
     $this->allowedAttributes[] = 'method';
     $this->allowedAttributes[] = 'target';
     parent::init();
 }
コード例 #5
0
ファイル: table.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'cellpadding';
     $this->allowedAttributes[] = 'cellspacing';
     $this->allowedAttributes[] = 'border';
     $this->allowedAttributes[] = 'width';
     $this->allowedAttributes[] = 'sortable';
     parent::init();
 }
コード例 #6
0
ファイル: formButtons.php プロジェクト: dev-lucid/lucid
 public function init()
 {
     parent::init();
     $this->addClass('btn-group');
     $this->addClass('pull-right');
     $this->attributes['role'] = 'group';
     $this->add(html::button(lucid::$app->i18n()->translate('button:cancel'), 'secondary', 'history.go(-1);'));
     $this->add(html::submit(lucid::$app->i18n()->translate('button:save')));
 }
コード例 #7
0
ファイル: menuitem.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'checked';
     $this->allowedAttributes[] = 'default';
     $this->allowedAttributes[] = 'disabled';
     $this->allowedAttributes[] = 'icon';
     $this->allowedAttributes[] = 'label';
     $this->allowedAttributes[] = 'radiogroup';
     $this->allowedAttributes[] = 'type';
     parent::init();
 }
コード例 #8
0
ファイル: meter.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'form';
     $this->allowedAttributes[] = 'high';
     $this->allowedAttributes[] = 'low';
     $this->allowedAttributes[] = 'max';
     $this->allowedAttributes[] = 'min';
     $this->allowedAttributes[] = 'optimum';
     $this->allowedAttributes[] = 'value';
     parent::init();
 }
コード例 #9
0
ファイル: alert.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->addClass('alert');
     parent::init();
 }
コード例 #10
0
ファイル: body.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'align';
     parent::init();
 }
コード例 #11
0
ファイル: datacolumn.php プロジェクト: dev-lucid/html
 public function init()
 {
     parent::init();
     $this->tag = 'td';
     $this->parameters = ['label', 'data_name', 'width', 'sortable', 'renderer'];
 }
コード例 #12
0
ファイル: cardSubtitle.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->addClass('card-subtitle');
     $this->addClass('text-muted');
     parent::init();
 }
コード例 #13
0
ファイル: column.php プロジェクト: dev-lucid/html
 public function init()
 {
     parent::init();
     #$this->addClass('col');
 }
コード例 #14
0
ファイル: container.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->addClass('container');
     parent::init();
 }
コード例 #15
0
ファイル: time.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'datetime';
     parent::init();
 }
コード例 #16
0
ファイル: nav.php プロジェクト: dev-lucid/html
 public function init()
 {
     parent::init();
     $this->addClass('nav');
     $this->addClass('nav-pills');
 }
コード例 #17
0
ファイル: navitem.php プロジェクト: dev-lucid/html
 public function init()
 {
     parent::init();
     $this->addClass('nav-item');
 }
コード例 #18
0
ファイル: inputHelp.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->addClass('text-muted');
     parent::init();
 }
コード例 #19
0
ファイル: inputGroup.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->addClass('input-group');
     parent::init();
 }
コード例 #20
0
ファイル: column.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'width';
     $this->allowedAttributes[] = 'span';
     parent::init();
 }
コード例 #21
0
ファイル: button.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'type';
     $this->allowedAttributes[] = 'name';
     parent::init();
 }
コード例 #22
0
ファイル: tableHeader.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->allowedAttributes[] = 'rowspan';
     $this->allowedAttributes[] = 'colspan';
     parent::init();
 }
コード例 #23
0
ファイル: buttongroup.php プロジェクト: dev-lucid/html
 public function init()
 {
     parent::init();
     $this->addClass('btn-group');
     $this->attributes['role'] = 'group';
 }
コード例 #24
0
ファイル: card.php プロジェクト: dev-lucid/html
 public function init()
 {
     $this->addClass('card');
     parent::init();
 }