1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * Configuration data converter. Converts associative array to tree array
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\App\Config\Scope;
- class Converter implements \Magento\Framework\Config\ConverterInterface
- {
- /**
- * Convert config data
- *
- * @param array $source
- * @return array
- */
- public function convert($source)
- {
- $output = [];
- foreach ($source as $key => $value) {
- $this->_setArrayValue($output, $key, $value);
- }
- return $output;
- }
- /**
- * Set array value by path
- *
- * @param array &$container
- * @param string $path
- * @param string $value
- * @return void
- */
- protected function _setArrayValue(array &$container, $path, $value)
- {
- $segments = explode('/', $path);
- $currentPointer = & $container;
- foreach ($segments as $segment) {
- if (!isset($currentPointer[$segment])) {
- $currentPointer[$segment] = [];
- }
- $currentPointer = & $currentPointer[$segment];
- }
- $currentPointer = $value;
- }
- }
|