![]() 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-config/Model/Config/Structure/Element/Iterator/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Iterator; /** * @api * @since 100.0.2 */ class Field extends \Magento\Config\Model\Config\Structure\Element\Iterator { /** * Group flyweight * * @var \Magento\Config\Model\Config\Structure\Element\Group */ protected $_groupFlyweight; /** * Field element flyweight * * @var \Magento\Config\Model\Config\Structure\Element\Field */ protected $_fieldFlyweight; /** * @param \Magento\Config\Model\Config\Structure\Element\Group $groupFlyweight * @param \Magento\Config\Model\Config\Structure\Element\Field $fieldFlyweight */ public function __construct( \Magento\Config\Model\Config\Structure\Element\Group $groupFlyweight, \Magento\Config\Model\Config\Structure\Element\Field $fieldFlyweight ) { $this->_groupFlyweight = $groupFlyweight; $this->_fieldFlyweight = $fieldFlyweight; } /** * Init current element * * @param array $element * @return void * @throws \LogicException */ protected function _initFlyweight(array $element) { if (!isset($element[\Magento\Config\Model\Config\Structure::TYPE_KEY])) { throw new \LogicException('System config structure element must contain "type" attribute'); } switch ($element[\Magento\Config\Model\Config\Structure::TYPE_KEY]) { case 'group': $this->_flyweight = $this->_groupFlyweight; break; case 'field': default: $this->_flyweight = $this->_fieldFlyweight; } parent::_initFlyweight($element); } }