PHP 8.2.30
Preview: ChoiceValidator.php Size: 2.87 KB
/opt/cloudlinux/alt-php54/root/usr/share/pear/Symfony/Component/Validator/Constraints/ChoiceValidator.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Validator\Constraints;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
use Symfony\Component\Validator\Exception\UnexpectedTypeException;

/**
 * ChoiceValidator validates that the value is one of the expected values.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 * @author Florian Eckerstorfer <florian@eckerstorfer.org>
 * @author Bernhard Schussek <bschussek@gmail.com>
 *
 * @api
 */
class ChoiceValidator extends ConstraintValidator
{
    /**
     * {@inheritDoc}
     */
    public function validate($value, Constraint $constraint)
    {
        if (!$constraint->choices && !$constraint->callback) {
            throw new ConstraintDefinitionException('Either "choices" or "callback" must be specified on constraint Choice');
        }

        if (null === $value) {
            return;
        }

        if ($constraint->multiple && !is_array($value)) {
            throw new UnexpectedTypeException($value, 'array');
        }

        if ($constraint->callback) {
            if (is_callable(array($this->context->getClassName(), $constraint->callback))) {
                $choices = call_user_func(array($this->context->getClassName(), $constraint->callback));
            } elseif (is_callable($constraint->callback)) {
                $choices = call_user_func($constraint->callback);
            } else {
                throw new ConstraintDefinitionException('The Choice constraint expects a valid callback');
            }
        } else {
            $choices = $constraint->choices;
        }

        if ($constraint->multiple) {
            foreach ($value as $_value) {
                if (!in_array($_value, $choices, $constraint->strict)) {
                    $this->context->addViolation($constraint->multipleMessage, array('{{ value }}' => $_value));
                }
            }

            $count = count($value);

            if ($constraint->min !== null && $count < $constraint->min) {
                $this->context->addViolation($constraint->minMessage, array('{{ limit }}' => $constraint->min), null, (int) $constraint->min);

                return;
            }

            if ($constraint->max !== null && $count > $constraint->max) {
                $this->context->addViolation($constraint->maxMessage, array('{{ limit }}' => $constraint->max), null, (int) $constraint->max);

                return;
            }
        } elseif (!in_array($value, $choices, $constraint->strict)) {
            $this->context->addViolation($constraint->message, array('{{ value }}' => $value));
        }
    }
}

Directory Contents

Dirs: 1 × Files: 90

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-03 22:54:51
Edit Download
1.09 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.22 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.52 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.14 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
511 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
775 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.61 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.42 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
699 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
3.97 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.08 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.87 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.73 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.14 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.48 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
520 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.25 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.82 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
522 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.25 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
514 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
522 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
510 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.25 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
584 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.98 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
489 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
588 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
559 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.07 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.45 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
511 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
797 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.53 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
6.11 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
497 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
516 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
631 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
610 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
630 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
399 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
479 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.92 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
523 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
598 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.91 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
5.64 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.99 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.64 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.29 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.86 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
578 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.80 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
522 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.25 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.54 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.21 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
491 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
510 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
625 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
604 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
518 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.24 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
476 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.90 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
518 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
766 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
496 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
597 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
530 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
604 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
516 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
728 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
509 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
929 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
404 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.06 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.38 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
2.39 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.24 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
404 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
514 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.21 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
509 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
821 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
774 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
1.39 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
560 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download
3.59 KB lrw-r--r-- 2019-12-18 11:22:58
Edit Download
907 B lrw-r--r-- 2019-12-18 11:22:58
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).