mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
1f7fc1f76a
The entire framework repo (with the exception of system-generated files) has been amended to respect the 120c line-length limit. This is in preparation for the enforcement of this rule with PHP_CodeSniffer.
84 lines
2.4 KiB
PHP
84 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* SelectionGroup represents a number of fields which are selectable by a radio
|
|
* button that appears at the beginning of each item. Using CSS, you can
|
|
* configure the field to only display its contents if the corresponding radio
|
|
* button is selected.
|
|
*
|
|
* @package forms
|
|
* @subpackage fields-structural
|
|
*/
|
|
class SelectionGroup extends CompositeField {
|
|
|
|
/**
|
|
* Create a new selection group.
|
|
* @param name The field name of the selection group.
|
|
* @param items The list of items to show. This should be a map. The keys will be the radio
|
|
* button option names, and the values should be the associated field to display. If you want,
|
|
* you can make this field a composite field.
|
|
*
|
|
* If you want to a have a title that is different from the value of the key, you can express it
|
|
* as "InternalVal//This is the Title"
|
|
*/
|
|
public function __construct($name, $items) {
|
|
$this->name = $name;
|
|
|
|
parent::__construct($items);
|
|
|
|
Requirements::css(FRAMEWORK_DIR . '/css/SelectionGroup.css');
|
|
}
|
|
|
|
public function FieldSet() {
|
|
return $this->FieldList();
|
|
}
|
|
|
|
public function FieldList() {
|
|
$items = parent::FieldList()->toArray();
|
|
|
|
$count = 0;
|
|
$firstSelected = $checked ="";
|
|
$newItems = array();
|
|
|
|
foreach($items as $key => $item) {
|
|
if(strpos($key,'//') !== false) {
|
|
list($key,$title) = explode('//', $key,2);
|
|
} else {
|
|
$title = $key;
|
|
}
|
|
if($this->value == $key) {
|
|
$firstSelected = " class=\"selected\"";
|
|
$checked = " checked=\"checked\"";
|
|
}
|
|
|
|
$itemID = $this->ID() . '_' . (++$count);
|
|
$extra = array(
|
|
"RadioButton" => "<input class=\"selector\" type=\"radio\" id=\"$itemID\" name=\"$this->name\""
|
|
. " value=\"$key\"$checked />",
|
|
"RadioLabel" => "<label for=\"$itemID\">$title</label>",
|
|
"Selected" => $firstSelected,
|
|
);
|
|
if(is_object($item)) $newItems[] = $item->customise($extra);
|
|
else $newItems[] = new ArrayData($extra);
|
|
|
|
$firstSelected = $checked ="";
|
|
}
|
|
|
|
return new ArrayList($newItems);
|
|
}
|
|
|
|
public function hasData() {
|
|
return true;
|
|
}
|
|
|
|
public function FieldHolder($properties = array()) {
|
|
Requirements::javascript(THIRDPARTY_DIR .'/jquery/jquery.js');
|
|
Requirements::javascript(FRAMEWORK_DIR . '/javascript/SelectionGroup.js');
|
|
Requirements::css(FRAMEWORK_DIR . '/css/SelectionGroup.css');
|
|
|
|
$obj = $properties ? $this->customise($properties) : $this;
|
|
|
|
return $obj->renderWith($this->getTemplates());
|
|
}
|
|
}
|
|
|