mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
44 lines
957 B
PHP
Executable File
44 lines
957 B
PHP
Executable File
<?php
|
|
/**
|
|
* EditableCheckboxGroup
|
|
*
|
|
* Represents a set of selectable radio buttons
|
|
*
|
|
* @package userforms
|
|
*/
|
|
|
|
class EditableCheckboxGroupField extends EditableMultipleOptionField {
|
|
|
|
private static $singular_name = "Checkbox Group";
|
|
|
|
private static $plural_name = "Checkbox Groups";
|
|
|
|
public function getFormField() {
|
|
$optionSet = $this->Options();
|
|
$options = array();
|
|
|
|
$optionMap = ($optionSet) ? $optionSet->map('EscapedTitle', 'Title') : array();
|
|
|
|
return new UserFormsCheckboxSetField($this->Name, $this->Title, $optionMap);
|
|
}
|
|
|
|
public function getValueFromData($data) {
|
|
$result = '';
|
|
$entries = (isset($data[$this->Name])) ? $data[$this->Name] : false;
|
|
|
|
if($entries) {
|
|
if(!is_array($data[$this->Name])) {
|
|
$entries = array($data[$this->Name]);
|
|
}
|
|
foreach($entries as $selected => $value) {
|
|
if(!$result) {
|
|
$result = $value;
|
|
} else {
|
|
$result .= ", " . $value;
|
|
}
|
|
}
|
|
}
|
|
return $result;
|
|
}
|
|
}
|