Nette\Forms\Controls\CheckboxList::__construct PHP Method

__construct() public method

public __construct ( $label = NULL, array $items = NULL )
$items array
    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');
        $this->setOption('type', 'checkbox');
    }