2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2016-08-19 00:51:35 +02:00
|
|
|
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Single checkbox field.
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
class CheckboxField extends FormField
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $schemaDataType = FormField::SCHEMA_DATA_TYPE_BOOLEAN;
|
|
|
|
|
|
|
|
public function setValue($value)
|
|
|
|
{
|
|
|
|
$this->value = ($value) ? 1 : 0;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataValue()
|
|
|
|
{
|
|
|
|
return ($this->value) ? 1 : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function Value()
|
|
|
|
{
|
|
|
|
return ($this->value) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAttributes()
|
|
|
|
{
|
|
|
|
$attrs = parent::getAttributes();
|
|
|
|
$attrs['value'] = 1;
|
|
|
|
return array_merge(
|
|
|
|
$attrs,
|
|
|
|
array(
|
|
|
|
'checked' => ($this->Value()) ? 'checked' : null,
|
|
|
|
'type' => 'checkbox',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a readonly version of this field
|
|
|
|
*/
|
|
|
|
public function performReadonlyTransformation()
|
|
|
|
{
|
|
|
|
$field = new CheckboxField_Readonly($this->name, $this->title, $this->value);
|
|
|
|
$field->setForm($this->form);
|
|
|
|
return $field;
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|