EmailConstraint.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EmailConstraint.php
  2. 10 core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EmailConstraint.php
  3. 11.x core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EmailConstraint.php

Namespace

Drupal\Core\Validation\Plugin\Validation\Constraint

File

core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EmailConstraint.php

View source
<?php

namespace Drupal\Core\Validation\Plugin\Validation\Constraint;

use Symfony\Component\Validator\Constraints\Email;

/**
 * Count constraint.
 *
 * Overrides the symfony constraint to use the strict setting.
 *
 * @Constraint(
 *   id = "Email",
 *   label = @Translation("Email", context = "Validation")
 * )
 */
class EmailConstraint extends Email {
    
    /**
     * {@inheritdoc}
     */
    public function __construct($options = []) {
        // Since Symfony 4.1, the 'mode' property is used, for previous versions the
        // 'strict' property. If the 'strict' property is set,
        // \Symfony\Component\Validator\Constraints\EmailValidator will trigger
        // a deprecation error, so only assign a value for versions of Symfony
        // < 4.2. This compatibility layer can be removed once Drupal requires
        // Symfony 4.2 or higher in https://www.drupal.org/node/3009219.
        if (property_exists($this, 'mode')) {
            $default_options = [
                'mode' => 'strict',
            ];
        }
        else {
            $default_options = [
                'strict' => TRUE,
            ];
        }
        $options += $default_options;
        parent::__construct($options);
    }
    
    /**
     * {@inheritdoc}
     */
    public function validatedBy() {
        return '\\Symfony\\Component\\Validator\\Constraints\\EmailValidator';
    }

}

Classes

Title Deprecated Summary
EmailConstraint Count constraint.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.