Created
June 25, 2014 13:03
-
-
Save Mrkisha/e1dae37c2775ab63ceef to your computer and use it in GitHub Desktop.
Symfony2 custom Constraint Validation import existing constraints
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Symfony\Component\Validator\Constraints\Email; | |
use Symfony\Component\Validator\Constraints\EmailValidator; | |
class RequireWorkInfoValidator extends ConstraintValidator | |
{ | |
public function validate($value, Constraint $constraint) | |
{ | |
if ($value->getEmploymentStatus() == 1) { | |
if ( strlen($value->getMainWork()) == 0) { | |
$this->context->addViolationAt('mainWork', $constraint->message, array(), null); | |
} | |
// $this->context->addViolationAt('mainWork', $constraint->message, array(), null); | |
$this->context->addViolationAt('mainWorkDetails', $constraint->message, array(), null); | |
$this->context->addViolationAt('phoneWork', $constraint->message, array(), null); | |
$emailConstraint = new EmailValidator(); | |
if( $emailValidator->validate($value->getEmailWork(), new Email()) ) { | |
$this->context->addViolationAt('emailWork', $constraint->message, array(), null); | |
} //elseif ( $value->getEmailWork() == '' ) { | |
// } | |
// $this->context->addViolation($constraint->message); | |
return false; | |
} | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment