mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
a5e82ddff1
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@75590 467b73ca-7a2a-4603-9d3b-597d59a354a9
193 lines
4.9 KiB
PHP
Executable File
193 lines
4.9 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Dropdown field, created from a <select> tag.
|
|
* @package forms
|
|
* @subpackage fields-basic
|
|
*/
|
|
class DropdownField extends FormField {
|
|
|
|
/**
|
|
* @var boolean $source Associative or numeric array of all dropdown items,
|
|
* with array key as the submitted field value, and the array value as a
|
|
* natural language description shown in the interface element.
|
|
*/
|
|
protected $source;
|
|
|
|
/**
|
|
* @var boolean $isSelected Determines if the field was selected
|
|
* at the time it was rendered, so if {@link $value} matches on of the array
|
|
* values specified in {@link $source}
|
|
*/
|
|
protected $isSelected;
|
|
|
|
/**
|
|
* @var boolean $disabled
|
|
*/
|
|
protected $disabled;
|
|
|
|
/**
|
|
* @var boolean $hasEmptyDefault Show the first <option> element as
|
|
* empty (not having a value), with an optional label defined through
|
|
* {@link $emptyString}. By default, the <select> element will be
|
|
* rendered with the first option from {@link $source} selected.
|
|
*/
|
|
protected $hasEmptyDefault = false;
|
|
|
|
/**
|
|
* @var string $emptyString The title shown for an empty default selection,
|
|
* e.g. "Select...".
|
|
*/
|
|
protected $emptyString = '';
|
|
|
|
/**
|
|
* Creates a new dropdown field.
|
|
* @param $name The field name
|
|
* @param $title The field title
|
|
* @param $source An map of the dropdown items
|
|
* @param $value The current value
|
|
* @param $form The parent form
|
|
* @param $emptyString mixed Add an empty selection on to of the {@link $source}-Array
|
|
* (can also be boolean, which results in an empty string)
|
|
* Argument is deprecated in 2.3, please use {@link setHasEmptyDefault()} and {@link setEmptyString()} instead.
|
|
*/
|
|
function __construct($name, $title = null, $source = array(), $value = "", $form = null, $emptyString = null) {
|
|
$this->source = $source;
|
|
|
|
if($emptyString) $this->setHasEmptyDefault(true);
|
|
if(is_string($emptyString)) $this->setEmptyString($emptyString);
|
|
|
|
parent::__construct($name, ($title===null) ? $name : $title, $value, $form);
|
|
}
|
|
|
|
/**
|
|
* Returns a <select> tag containing all the appropriate <option> tags.
|
|
* Makes use of {@link FormField->createTag()} to generate the <select>
|
|
* tag and option elements inside is as the content of the <select>.
|
|
*
|
|
* @return string HTML tag for this dropdown field
|
|
*/
|
|
function Field() {
|
|
$options = '';
|
|
|
|
$source = $this->getSource();
|
|
if($source) {
|
|
// For SQLMap sources, the empty string needs to be added specially
|
|
if(is_object($source) && $this->emptyString) {
|
|
$options .= $this->createTag('option', array('value' => ''), $this->emptyString);
|
|
}
|
|
|
|
foreach($source as $value => $title) {
|
|
|
|
// Blank value of field and source (e.g. "" => "(Any)")
|
|
if($value === '' && ($this->value === '' || $this->value === null)) {
|
|
$selected = 'selected';
|
|
} else {
|
|
// Normal value from the source
|
|
if($value) {
|
|
$selected = ($value == $this->value) ? 'selected' : null;
|
|
} else {
|
|
// Do a type check comparison, we might have an array key of 0
|
|
$selected = ($value === $this->value) ? 'selected' : null;
|
|
}
|
|
|
|
$this->isSelected = ($selected) ? true : false;
|
|
}
|
|
|
|
$options .= $this->createTag(
|
|
'option',
|
|
array(
|
|
'selected' => $selected,
|
|
'value' => $value
|
|
),
|
|
$title
|
|
);
|
|
}
|
|
}
|
|
|
|
$attributes = array(
|
|
'class' => ($this->extraClass() ? $this->extraClass() : ''),
|
|
'id' => $this->id(),
|
|
'name' => $this->name,
|
|
'tabindex' => $this->getTabIndex()
|
|
);
|
|
|
|
if($this->disabled) $attributes['disabled'] = 'disabled';
|
|
|
|
return $this->createTag('select', $attributes, $options);
|
|
}
|
|
|
|
/**
|
|
* @return boolean
|
|
*/
|
|
function isSelected(){
|
|
return $this->isSelected;
|
|
}
|
|
|
|
/**
|
|
* Gets the source array including any empty default values.
|
|
*
|
|
* @return array
|
|
*/
|
|
function getSource() {
|
|
if(is_array($this->source) && $this->getHasEmptyDefault()) {
|
|
return array(""=>$this->emptyString) + (array)$this->source;
|
|
} else {
|
|
return $this->source;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array $source
|
|
*/
|
|
function setSource($source) {
|
|
$this->source = $source;
|
|
}
|
|
|
|
/**
|
|
* @param boolean $bool
|
|
*/
|
|
function setHasEmptyDefault($bool) {
|
|
$this->hasEmptyDefault = $bool;
|
|
}
|
|
|
|
/**
|
|
* @return boolean
|
|
*/
|
|
function getHasEmptyDefault() {
|
|
return $this->hasEmptyDefault;
|
|
}
|
|
|
|
/**
|
|
* Set the default selection label, e.g. "select...".
|
|
* Defaults to an empty string. Automatically sets
|
|
* {@link $hasEmptyDefault} to true.
|
|
*
|
|
* @param string $str
|
|
*/
|
|
function setEmptyString($str) {
|
|
$this->setHasEmptyDefault(true);
|
|
$this->emptyString = $str;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
function getEmptyString() {
|
|
return $this->emptyString;
|
|
}
|
|
|
|
function performReadonlyTransformation() {
|
|
$field = new LookupField($this->name, $this->title, $this->source);
|
|
$field->setValue($this->value);
|
|
$field->setForm($this->form);
|
|
$field->setReadonly(true);
|
|
return $field;
|
|
}
|
|
|
|
function extraClass(){
|
|
$ret = parent::extraClass();
|
|
if($this->extraClass) $ret .= " $this->extraClass";
|
|
return $ret;
|
|
}
|
|
}
|
|
?>
|