![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-ui/Config/Reader/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Ui\Config\Reader; use Magento\Framework\Config\Dom\ValidationException; use Magento\Framework\Config\ReaderInterface; use Magento\Framework\Exception\LocalizedException; use Magento\Framework\Phrase; /** * UI Component definition config reader */ class Definition extends \Magento\Framework\Config\Reader\Filesystem implements ReaderInterface { /** * Load configuration scope * * @param string|null $scope * @return array */ public function read($scope = null) { $scope = $scope ?: $this->_defaultScope; $fileList = $this->_fileResolver->get($this->_fileName, $scope); if (!count($fileList)) { return []; } $output = $this->readFiles($fileList); return $output; } /** * Read, merge configuration files and validate resulted XML * * @param array $fileList * @return array * @throws LocalizedException if XML file is invalid */ private function readFiles($fileList) { /** @var \Magento\Framework\Config\Dom $configMerger */ $configMerger = null; foreach ($fileList as $key => $content) { try { if (!$configMerger) { $configMerger = $this->_createConfigMerger($this->_domDocumentClass, $content); } else { $configMerger->merge($content); } } catch (ValidationException $e) { throw new LocalizedException( new Phrase( 'The XML in file "%1" is invalid.' . "\n%2\nVerify the XML and try again.", [$key, $e->getMessage()] ) ); } } if ($this->validationState->isValidationRequired()) { $errors = []; if ($configMerger && !$configMerger->validate($this->_schemaFile, $errors)) { $message = "Invalid Document \n"; throw new LocalizedException( new Phrase($message . implode("\n", $errors)) ); } } $output = []; if ($configMerger) { $output = $this->_converter->convert($configMerger->getDom()->documentElement); } return $output; } }