| | <?php |
| |
|
| | namespace Kanboard\Validator; |
| |
|
| | use SimpleValidator\Validator; |
| | use SimpleValidator\Validators; |
| | use Kanboard\Model\LinkModel; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | class LinkValidator extends BaseValidator |
| | { |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validateCreation(array $values) |
| | { |
| | $v = new Validator($values, array( |
| | new Validators\Required('label', t('Field required')), |
| | new Validators\Unique('label', t('This label must be unique'), $this->db->getConnection(), LinkModel::TABLE), |
| | new Validators\NotEquals('label', 'opposite_label', t('The labels must be different')), |
| | )); |
| |
|
| | return array( |
| | $v->execute(), |
| | $v->getErrors() |
| | ); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validateModification(array $values) |
| | { |
| | $v = new Validator($values, array( |
| | new Validators\Required('id', t('Field required')), |
| | new Validators\Required('opposite_id', t('Field required')), |
| | new Validators\Required('label', t('Field required')), |
| | new Validators\Unique('label', t('This label must be unique'), $this->db->getConnection(), LinkModel::TABLE), |
| | )); |
| |
|
| | return array( |
| | $v->execute(), |
| | $v->getErrors() |
| | ); |
| | } |
| | } |
| |
|