/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Config/SchemaLocator.php
58 строк
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Menu configuration schema locator * * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Framework\Config; use Magento\Framework\Config\Dom\UrnResolver; /** * Class SchemaLocator provides the information about xsd schema to be used for a configuration validation * Current class can be configured through di.xml * The default value of realPath variable contains information about view.xsd to keep the backward compatibility. */ class SchemaLocator implements \Magento\Framework\Config\SchemaLocatorInterface { /** * Path to corresponding XSD file with validation rules for merged config * * @var string */ protected $schema = null; /** * SchemaLocator constructor. * * @param UrnResolver $urnResolver * @param string $realPath */ public function __construct( UrnResolver $urnResolver, $realPath = 'urn:magento:framework:Config/etc/view.xsd' ) { $this->schema = $urnResolver->getRealPath($realPath); } /** * Get path to merged config schema * * @return string|null */ public function getSchema() { return $this->schema; } /** * Get path to pre file validation schema * * @return string|null */ public function getPerFileSchema() { return $this->getSchema(); } }