Last active
February 13, 2019 15:14
-
-
Save xavier83ar/200a64216e50429228ea6c3f2119474c to your computer and use it in GitHub Desktop.
CakePHP separate form radio example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?= $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