silverstripe-userforms/code/model/editableformfields/EditableCountryDropdownField.php

49 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/**
* A dropdown field which allows the user to select a country
*
* @package userforms
*/
class EditableCountryDropdownField extends EditableFormField {
2013-06-02 04:05:16 +02:00
private static $singular_name = 'Country Dropdown';
2015-09-11 00:20:06 +02:00
2013-06-02 04:05:16 +02:00
private static $plural_name = 'Country Dropdowns';
2015-07-24 04:37:48 +02:00
/**
* @return FieldList
*/
public function getCMSFields() {
$fields = parent::getCMSFields();
$fields->removeByName('Default');
return $fields;
}
2015-09-11 00:20:06 +02:00
public function getFormField() {
$field = CountryDropdownField::create($this->Name, $this->EscapedTitle)
->setFieldHolderTemplate('UserFormsField_holder')
->setTemplate('UserFormsDropdownField');
$this->doUpdateFormField($field);
return $field;
}
2015-09-11 00:20:06 +02:00
public function getValueFromData($data) {
if(isset($data[$this->Name])) {
$source = $this->getFormField()->getSource();
return $source[$data[$this->Name]];
}
}
2015-09-11 00:20:06 +02:00
public function getIcon() {
return USERFORMS_DIR . '/images/editabledropdown.png';
}
public function getSelectorField(EditableCustomRule $rule, $forOnLoad = false) {
return "$(\"select[name='{$this->Name}']\")";
}
}