2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2008-01-09 05:18:36 +01:00
|
|
|
/**
|
2008-01-20 09:58:04 +01:00
|
|
|
* Grouped dropdown, using <optgroup> tags.
|
|
|
|
*
|
|
|
|
* $source parameter (from DropdownField) must be a two dimensional array.
|
|
|
|
* The first level of the array is used for the <optgroup>, and the second
|
|
|
|
* level are the <options> for each group.
|
|
|
|
*
|
|
|
|
* Returns a <select> tag containing all the appropriate <option> tags, with
|
|
|
|
* <optgroup> tags around the <option> tags as required.
|
|
|
|
*
|
2008-01-09 05:18:36 +01:00
|
|
|
* @package forms
|
|
|
|
* @subpackage fields-basic
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
class GroupedDropdownField extends DropdownField {
|
2008-01-20 09:58:04 +01:00
|
|
|
|
|
|
|
function Field() {
|
2008-08-26 01:32:12 +02:00
|
|
|
// Initialisations
|
|
|
|
$options = '';
|
|
|
|
$classAttr = '';
|
|
|
|
|
|
|
|
if($extraClass = trim($this->extraClass())) {
|
|
|
|
$classAttr = "class=\"$extraClass\"";
|
|
|
|
}
|
2008-10-15 14:39:09 +02:00
|
|
|
|
|
|
|
foreach($this->getSource() as $value => $title) {
|
|
|
|
if(is_array($title)) {
|
|
|
|
$options .= "<optgroup label=\"$value\">";
|
|
|
|
foreach($title as $value2 => $title2) {
|
|
|
|
$selected = $value2 == $this->value ? " selected=\"selected\"" : "";
|
|
|
|
$options .= "<option$selected value=\"$value2\">$title2</option>";
|
2008-08-26 01:32:12 +02:00
|
|
|
}
|
2008-10-15 14:39:09 +02:00
|
|
|
$options .= "</optgroup>";
|
|
|
|
} else { // Fall back to the standard dropdown field
|
|
|
|
$selected = $value == $this->value ? " selected=\"selected\"" : "";
|
|
|
|
$options .= "<option$selected value=\"$value\">$title</option>";
|
2008-08-26 01:32:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$id = $this->id();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-08-26 01:32:12 +02:00
|
|
|
return "<select $classAttr name=\"$this->name\" id=\"$id\">$options</select>";
|
2008-01-20 09:58:04 +01:00
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2008-01-20 09:58:04 +01:00
|
|
|
|
|
|
|
?>
|