__construct() public method

public __construct ( $label = NULL, array $items = NULL )
$items array
Beispiel #1
0
 /**
  * @param  string  label
  * @param  array   options from which to choose
  */
 public function __construct($label = NULL, array $items = NULL)
 {
     parent::__construct($label, $items);
     $this->control->type = 'checkbox';
     $this->container = Html::el();
     $this->separator = Html::el('br');
 }
Beispiel #2
0
 public function __construct($label = NULL, array $items = NULL)
 {
     parent::__construct($label, $items);
     $this->control->type = 'checkbox';
 }
Beispiel #3
0
 public function __construct($label = NULL, array $items = NULL)
 {
     parent::__construct($label, $items);
     $this->setOption('type', 'select');
 }