Skip to content

Instantly share code, notes, and snippets.

@mattsimpson
Created April 4, 2014 14:48
Show Gist options
  • Save mattsimpson/9976182 to your computer and use it in GitHub Desktop.
Save mattsimpson/9976182 to your computer and use it in GitHub Desktop.
// My Form Radio Button
$this->addElement('radio', 'correctAnswer', array(
'decorators' => $this->elementDecorators,
'multiOptions' => array(
'0' => 'Correct Answer',
'1' => 'Correct Answer',
'2' => 'Correct Answer',
'3' => 'Correct Answer',
),
'class' => 'segment-answer-option',
'required' => true,
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment