| <?php |
|
|
| namespace Kanboard\Validator; |
|
|
| use SimpleValidator\Validator; |
| use SimpleValidator\Validators; |
|
|
| |
| |
| |
| |
| |
| |
| class ColumnValidator extends BaseValidator |
| { |
| |
| |
| |
| |
| |
| |
| |
| public function validateModification(array $values) |
| { |
| $rules = array( |
| new Validators\Required('id', t('This value is required')), |
| new Validators\Integer('id', t('This value must be an integer')), |
| ); |
|
|
| $v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
|
|
| return array( |
| $v->execute(), |
| $v->getErrors() |
| ); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| public function validateCreation(array $values) |
| { |
| $rules = array( |
| new Validators\Required('project_id', t('The project id is required')), |
| new Validators\Integer('project_id', t('This value must be an integer')), |
| ); |
|
|
| $v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
|
|
| return array( |
| $v->execute(), |
| $v->getErrors() |
| ); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| private function commonValidationRules() |
| { |
| return array( |
| new Validators\Integer('task_limit', t('This value must be an integer')), |
| new Validators\GreaterThan('task_limit', t('This value must be greater than %d', -1), -1), |
| new Validators\Required('title', t('The title is required')), |
| new Validators\MaxLength('title', t('The maximum length is %d characters', 191), 191), |
| ); |
| } |
| } |
|
|