/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Module/I18n/Parser/Parser.php
54 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 11:23
22 окт 2025, 11:23
6c2f6e6
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Setup\Module\I18n\Parser; /** * Parser */ class Parser extends AbstractParser { /** * Parse one type * * @param array $options * @return void */ protected function _parseByTypeOptions($options) { foreach ($this->_getFiles($options) as $file) { $adapter = $this->_adapters[$options['type']]; $adapter->parse($file); foreach ($adapter->getPhrases() as $phraseData) { $this->_addPhrase($phraseData); } } } /** * Add phrase * * @param array $phraseData * @return void */ protected function _addPhrase($phraseData) { try { $phrase = $this->_factory->createPhrase([ 'phrase' => $phraseData['phrase'], 'translation' => $phraseData['phrase'], 'quote' => $phraseData['quote'], ]); $this->_phrases[$phrase->getCompiledPhrase()] = $phrase; } catch (\DomainException $e) { throw new \DomainException( "{$e->getMessage()} in {$phraseData['file']}:{$phraseData['line']}", $e->getCode(), $e ); } } }