| | <?php |
| |
|
| | namespace Kanboard\Validator; |
| |
|
| | use SimpleValidator\Validator; |
| | use SimpleValidator\Validators; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | class SubtaskValidator extends BaseValidator |
| | { |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validateCreation(array $values) |
| | { |
| | $rules = array( |
| | new Validators\Required('task_id', t('The task id is required')), |
| | new Validators\Required('title', t('The title is required')), |
| | ); |
| |
|
| | $v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
| |
|
| | return array( |
| | $v->execute(), |
| | $v->getErrors() |
| | ); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validateModification(array $values) |
| | { |
| | $rules = array( |
| | new Validators\Required('id', t('The subtask id is required')), |
| | new Validators\Required('task_id', t('The task id is required')), |
| | new Validators\Required('title', t('The title is required')), |
| | ); |
| |
|
| | $v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
| |
|
| | return array( |
| | $v->execute(), |
| | $v->getErrors() |
| | ); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validateApiModification(array $values) |
| | { |
| | $rules = array( |
| | new Validators\Required('id', t('The subtask id is required')), |
| | new Validators\Required('task_id', t('The task 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\Integer('id', t('The subtask id must be an integer')), |
| | new Validators\Integer('task_id', t('The task id must be an integer')), |
| | new Validators\MaxLength('title', t('The maximum length is %d characters', 65535), 65535), |
| | new Validators\Integer('user_id', t('The user id must be an integer')), |
| | new Validators\Integer('status', t('The status must be an integer')), |
| | new Validators\Numeric('time_estimated', t('The time must be a numeric value')), |
| | new Validators\Numeric('time_spent', t('The time must be a numeric value')), |
| | ); |
| | } |
| | } |
| |
|