Skip to content

Instantly share code, notes, and snippets.

@Mrkisha
Created June 25, 2014 13:03
Show Gist options
  • Save Mrkisha/e1dae37c2775ab63ceef to your computer and use it in GitHub Desktop.
Save Mrkisha/e1dae37c2775ab63ceef to your computer and use it in GitHub Desktop.
Symfony2 custom Constraint Validation import existing constraints
<?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