Skip to content

Instantly share code, notes, and snippets.

@xavier83ar
Last active February 13, 2019 15:14
Show Gist options
  • Select an option

  • Save xavier83ar/200a64216e50429228ea6c3f2119474c to your computer and use it in GitHub Desktop.

Select an option

Save xavier83ar/200a64216e50429228ea6c3f2119474c to your computer and use it in GitHub Desktop.
CakePHP separate form radio example
<?= $this->Form->radio('field', [1 => __('label for this')]) ?>
<?= $this->Form->radio('field', [2 => __('another label')], ['hiddenField' => false]) ?>
without labels
<?= $this->Form->radio('field', [1], ['label' => false]) ?>
<?= $this->Form->radio('field', [2], ['hiddenField' => false, 'label' => false]) ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment