mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
88 lines
2.1 KiB
PHP
88 lines
2.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Single checkbox field.
|
||
|
*/
|
||
|
class CheckboxField extends FormField {
|
||
|
/**
|
||
|
* Returns a single checkbox field - used by templates.
|
||
|
*
|
||
|
* Shouldn't this have a value?
|
||
|
*/
|
||
|
|
||
|
protected $disabled;
|
||
|
|
||
|
function Field() {
|
||
|
$checked = $this->value ? "checked=\"checked\"" : '';
|
||
|
$disabled = $this->disabled ? " disabled=\"disabled\"" : "";
|
||
|
return "<input class=\"checkbox\" type=\"checkbox\" value=\"1\" id=\"" . $this->id() . "\" name=\"{$this->name}\" $checked $disabled />";
|
||
|
}
|
||
|
|
||
|
|
||
|
function dataValue() {
|
||
|
return $this->value ? 1 : 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Checkboxes use the RightLabelledFieldHolder template, to put the field on the left
|
||
|
* and the label on the right. See {@link FormField::FieldHolder} for more information about
|
||
|
* how FieldHolder works.
|
||
|
*/
|
||
|
function FieldHolder() {
|
||
|
if($this->labelLeft) {
|
||
|
return parent::FieldHolder();
|
||
|
} else {
|
||
|
extract($this->getXMLValues(array( 'Name', 'Field', 'Title', 'Message', 'MessageType' )));
|
||
|
$messageBlock = isset($Message) ? "<span class=\"message $MessageType\">$Message</span>" : '';
|
||
|
$Type = $this->XML_val('Type');
|
||
|
return <<<HTML
|
||
|
<p id="$Name" class="field $Type">
|
||
|
$Field
|
||
|
<label class="right" for="{$this->id()}">$Title</label>
|
||
|
$messageBlock
|
||
|
</p>
|
||
|
HTML;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function useLabelLeft( $labelLeft = true ) {
|
||
|
$this->labelLeft = $labelLeft;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns a restricted field holder used within things like FieldGroups
|
||
|
*/
|
||
|
function SmallFieldHolder() {
|
||
|
$result = $this->Field();
|
||
|
if($t = $this->Title()) {
|
||
|
$result .= "<label for=\"" . $this->id() ."\">$t</label> ";
|
||
|
}
|
||
|
return $result;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns a readonly version of this field
|
||
|
*/
|
||
|
|
||
|
function performReadonlyTransformation() {
|
||
|
$field = new CheckboxField_Readonly($this->name, $this->title, $this->value ? 'yes' : 'no');
|
||
|
$field->setForm($this->form);
|
||
|
return $field;
|
||
|
}
|
||
|
|
||
|
function performDisabledTransformation() {
|
||
|
$this->disabled = true;
|
||
|
return $this;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class CheckboxField_Readonly extends ReadonlyField {
|
||
|
function performReadonlyTransformation() {
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
function setValue($val) {
|
||
|
$this->value = ($val) ? 'yes' : 'no';
|
||
|
}
|
||
|
}
|
||
|
?>
|