__construct() public method

public __construct ( $label = NULL, array $items = NULL )
$items array
Ejemplo n.º 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');
 }
Ejemplo n.º 2
0
 public function __construct($label = NULL, array $items = NULL)
 {
     parent::__construct($label, $items);
     $this->control->type = 'checkbox';
 }
Ejemplo n.º 3
0
 public function __construct($label = NULL, array $items = NULL)
 {
     parent::__construct($label, $items);
     $this->setOption('type', 'select');
 }