Skip to content

Instantly share code, notes, and snippets.

@carlosfilho88
Created November 12, 2014 17:10
Show Gist options
  • Save carlosfilho88/c065910df01813b17105 to your computer and use it in GitHub Desktop.
Save carlosfilho88/c065910df01813b17105 to your computer and use it in GitHub Desktop.
Zend_Form_Element_MultiCheckbox
<?php
$fooTable = new Application_Model_Useroptions;
$options = $fooTable->getUserOptions();
$checkboxes = new Zend_Form_Element_MultiCheckbox('checkboxes');
$checkboxes->setLabel('Options');
$checkboxes->setRegisterInArrayValidator(false);
foreach ($options as $opt)
$checkboxes->addMultiOption($opt->id_option, $opt->title);
$checkboxes->setRequired(true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment