2008-09-29 05:18:23 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2009-04-17 04:26:40 +02:00
|
|
|
* EditableRadioField
|
|
|
|
*
|
2008-09-29 05:18:23 +02:00
|
|
|
* Represents a set of selectable radio buttons
|
2009-04-17 04:26:40 +02:00
|
|
|
*
|
|
|
|
* @package userforms
|
2008-09-29 05:18:23 +02:00
|
|
|
*/
|
2009-12-07 03:04:20 +01:00
|
|
|
|
2009-04-17 04:26:40 +02:00
|
|
|
class EditableRadioField extends EditableMultipleOptionField {
|
2008-09-29 05:18:23 +02:00
|
|
|
|
2013-04-03 03:34:43 +02:00
|
|
|
private static $singular_name = 'Radio field';
|
2008-09-29 05:18:23 +02:00
|
|
|
|
2013-04-03 03:34:43 +02:00
|
|
|
private static $plural_name = 'Radio fields';
|
2015-07-24 04:37:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return FieldList
|
|
|
|
*/
|
|
|
|
public function getCMSFields() {
|
|
|
|
$fields = parent::getCMSFields();
|
|
|
|
|
|
|
|
$fields->removeByName('Default');
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
2008-09-29 05:18:23 +02:00
|
|
|
|
2012-07-17 06:09:31 +02:00
|
|
|
public function getFormField() {
|
2015-08-10 07:03:36 +02:00
|
|
|
$field = OptionsetField::create($this->Name, $this->EscapedTitle, $this->getOptionsMap());
|
2015-07-24 04:37:48 +02:00
|
|
|
|
2015-08-10 07:03:36 +02:00
|
|
|
// Set default item
|
|
|
|
$defaultOption = $this->getDefaultOptions()->first();
|
|
|
|
if($defaultOption) {
|
|
|
|
$field->setValue($defaultOption->EscapedTitle);
|
2008-09-29 05:18:23 +02:00
|
|
|
}
|
2015-08-10 07:03:36 +02:00
|
|
|
$this->doUpdateFormField($field);
|
2015-07-24 04:37:48 +02:00
|
|
|
return $field;
|
2008-09-29 05:18:23 +02:00
|
|
|
}
|
2015-08-13 01:31:37 +02:00
|
|
|
|
|
|
|
public function getSelectorField(EditableCustomRule $rule, $forOnLoad = false) {
|
|
|
|
// We only want to trigger on load once for the radio group - hence we focus on the first option only.
|
|
|
|
$first = $forOnLoad ? ':first' : '';
|
|
|
|
return "$(\"input[name='{$this->Name}']{$first}\")";
|
|
|
|
}
|
2012-07-17 06:09:31 +02:00
|
|
|
}
|