mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
60 lines
1.2 KiB
PHP
60 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\UserForms\FormField;
|
|
|
|
use SilverStripe\Forms\CheckboxSetField;
|
|
|
|
/**
|
|
* @package userforms
|
|
*/
|
|
class UserFormsCheckboxSetField extends CheckboxSetField
|
|
{
|
|
|
|
/**
|
|
* jQuery validate requires that the value of the option does not contain
|
|
* the actual value of the input.
|
|
*
|
|
* @return ArrayList
|
|
*/
|
|
public function getOptions()
|
|
{
|
|
$options = parent::getOptions();
|
|
|
|
foreach ($options as $option) {
|
|
$option->Name = "{$this->name}[]";
|
|
}
|
|
|
|
return $options;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*
|
|
* @param Validator $validator
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function validate($validator)
|
|
{
|
|
// get the previous values (could contain comma-delimited list)
|
|
|
|
$previous = $value = $this->Value();
|
|
|
|
if (is_string($value) && strstr($value, ",")) {
|
|
$value = explode(",", $value);
|
|
}
|
|
|
|
// set the value as an array for parent validation
|
|
|
|
$this->setValue($value);
|
|
|
|
$validated = parent::validate($validator);
|
|
|
|
// restore previous value after validation
|
|
|
|
$this->setValue($previous);
|
|
|
|
return $validated;
|
|
}
|
|
}
|