mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
cdc03602ed
- Updated CheckboxField, CheckboxSetField, DropdownField, OptionsetField to validate with HTML5 attributes & aria-required. https://www.w3.org/TR/wai-aria/states_and_properties#aria-required
58 lines
1.3 KiB
PHP
58 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
/**
|
|
* Single checkbox field.
|
|
*/
|
|
class CheckboxField extends FormField
|
|
{
|
|
|
|
protected $schemaDataType = FormField::SCHEMA_DATA_TYPE_BOOLEAN;
|
|
|
|
public function setValue($value, $data = null)
|
|
{
|
|
$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()
|
|
{
|
|
$attributes = parent::getAttributes();
|
|
$attributes['value'] = 1;
|
|
if ($this->Required()) {
|
|
// Semantically, it doesn't make sense to have a required attribute
|
|
// on a field in which both checked and unchecked are allowable.
|
|
unset($attributes['aria-required']);
|
|
}
|
|
|
|
return array_merge(
|
|
$attributes,
|
|
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;
|
|
}
|
|
}
|