/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/RegexValidator.php
53 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2022 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework; use Magento\Framework\App\ObjectManager; use Magento\Framework\Validator\RegexFactory; class RegexValidator extends RegexFactory { /** * @var RegexFactory */ private RegexFactory $regexValidatorFactory; /** * Validation pattern for handles array */ private const VALIDATION_RULE_PATTERN = '/^[a-z0-9,.]+[a-z0-9_,.]*$/i'; /** * @param RegexFactory|null $regexValidatorFactory */ public function __construct( ?RegexFactory $regexValidatorFactory = null ) { $this->regexValidatorFactory = $regexValidatorFactory ?: ObjectManager::getInstance()->get(RegexFactory::class); } /** * Validates parameter regex * * @param string $params * @param string $pattern * @return bool */ public function validateParamRegex(string $params, string $pattern = self::VALIDATION_RULE_PATTERN): bool { $validator = $this->regexValidatorFactory->create(['pattern' => $pattern]); if ($params && !$validator->isValid($params)) { return false; } return true; } }