/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/Config/Data.php
99 строк
2 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\App\Config; /** * Configuration data container */ class Data implements DataInterface { /** * Config data * * @var array */ protected $_data = []; /** * Config source data * * @var array */ protected $_source = []; /** * @param MetadataProcessor $processor * @param array $data */ public function __construct(MetadataProcessor $processor, array $data) { /** Clone the array to work around a kink in php7 that modifies the argument by reference */ $this->_data = $processor->process($this->arrayClone($data)); $this->_source = $data; } /** * Get config source * * @return array */ public function getSource() { return $this->_source; } /** * @inheritdoc */ public function getValue($path = null) { if ($path === null) { return $this->_data; } $keys = explode('/', $path); $data = $this->_data; foreach ($keys as $key) { if (is_array($data) && array_key_exists($key, $data)) { $data = $data[$key]; } else { return null; } } return $data; } /** * @inheritdoc */ public function setValue($path, $value) { $keys = explode('/', (string)$path); $lastKey = array_pop($keys); $currentElement = & $this->_data; foreach ($keys as $key) { if (!isset($currentElement[$key])) { $currentElement[$key] = []; } $currentElement = & $currentElement[$key]; } $currentElement[$lastKey] = $value; } /** * Copy array by value * * @param array $data * @return array */ private function arrayClone(array $data) { $clone = []; foreach ($data as $key => $value) { $clone[$key]= $value; } return $clone; } }