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