mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
29 lines
541 B
PHP
Executable File
29 lines
541 B
PHP
Executable File
<?php
|
|
/**
|
|
* EditableRadioField
|
|
*
|
|
* Represents a set of selectable radio buttons
|
|
*
|
|
* @package userforms
|
|
*/
|
|
|
|
class EditableRadioField extends EditableMultipleOptionField {
|
|
|
|
static $singular_name = 'Radio field';
|
|
|
|
static $plural_name = 'Radio fields';
|
|
|
|
public function getFormField() {
|
|
$optionSet = $this->Options();
|
|
$options = array();
|
|
|
|
if($optionSet) {
|
|
foreach( $optionSet as $option ) {
|
|
$options[$option->Title] = $option->Title;
|
|
}
|
|
}
|
|
|
|
return new OptionsetField($this->Name, $this->Title, $options);
|
|
}
|
|
}
|