2008-09-29 05:18:23 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* EditableDropdown
|
2009-04-17 04:26:40 +02:00
|
|
|
*
|
2010-09-03 07:06:13 +02:00
|
|
|
* Represents a modifiable dropdown (select) box on a form
|
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 EditableDropdown extends EditableMultipleOptionField {
|
2008-09-29 05:18:23 +02:00
|
|
|
|
2013-04-03 03:34:43 +02:00
|
|
|
private static $singular_name = 'Dropdown Field';
|
2008-09-29 05:18:23 +02:00
|
|
|
|
2013-04-03 03:34:43 +02:00
|
|
|
private static $plural_name = 'Dropdowns';
|
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
|
|
|
|
2010-09-03 07:06:13 +02:00
|
|
|
/**
|
|
|
|
* @return DropdownField
|
|
|
|
*/
|
2015-07-24 04:37:48 +02:00
|
|
|
public function getFormField() {
|
2008-09-29 05:18:23 +02:00
|
|
|
$optionSet = $this->Options();
|
2015-07-24 04:37:48 +02:00
|
|
|
$defaultOptions = $optionSet->filter('Default', 1);
|
2008-09-29 05:18:23 +02:00
|
|
|
$options = array();
|
2010-09-03 07:06:13 +02:00
|
|
|
|
2009-04-27 08:00:05 +02:00
|
|
|
if($optionSet) {
|
2010-09-03 07:06:13 +02:00
|
|
|
foreach($optionSet as $option) {
|
2009-04-27 08:00:05 +02:00
|
|
|
$options[$option->Title] = $option->Title;
|
|
|
|
}
|
2009-04-17 04:26:40 +02:00
|
|
|
}
|
2010-09-03 07:06:13 +02:00
|
|
|
|
2014-12-22 02:49:33 +01:00
|
|
|
$field = DropdownField::create($this->Name, $this->Title, $options);
|
|
|
|
|
|
|
|
if ($this->Required) {
|
|
|
|
// Required validation can conflict so add the Required validation messages
|
|
|
|
// as input attributes
|
|
|
|
$errorMessage = $this->getErrorMessage()->HTML();
|
|
|
|
$field->setAttribute('data-rule-required', 'true');
|
|
|
|
$field->setAttribute('data-msg-required', $errorMessage);
|
|
|
|
}
|
2015-07-24 04:37:48 +02:00
|
|
|
|
|
|
|
if($defaultOptions->count()) {
|
|
|
|
$field->setValue($defaultOptions->First()->EscapedTitle);
|
|
|
|
}
|
2014-12-22 02:49:33 +01:00
|
|
|
|
|
|
|
return $field;
|
2008-09-29 05:18:23 +02:00
|
|
|
}
|
2009-12-07 03:04:20 +01:00
|
|
|
}
|