예제 #1
0
 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
 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
 public function init()
 {
     parent::init();
     $this->tag = 'td';
     $this->parameters = ['label', 'data_name', 'width', 'sortable', 'renderer'];
 }
예제 #12
0
 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
 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
 public function init()
 {
     $this->addClass('text-muted');
     parent::init();
 }
예제 #19
0
 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
 public function init()
 {
     $this->allowedAttributes[] = 'rowspan';
     $this->allowedAttributes[] = 'colspan';
     parent::init();
 }
예제 #23
0
 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();
 }