![]() 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-customer/CustomerData/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\CustomerData; use Magento\Framework\Config\ConverterInterface; /** * Class that receives xml merged source and process it. */ class SectionConfigConverter implements ConverterInterface { /** * Invalidate all sections marker */ public const INVALIDATE_ALL_SECTIONS_MARKER = '*'; /** * @inheritdoc */ public function convert($source) { $sections = []; foreach ($source->getElementsByTagName('action') as $action) { $actionName = $action->getAttribute('name') === null ? '' : strtolower($action->getAttribute('name')); foreach ($action->getElementsByTagName('section') as $section) { $sections[$actionName][] = $section->getAttribute('name') === null ? '' : strtolower($section->getAttribute('name')); } if (!isset($sections[$actionName])) { $sections[$actionName][] = self::INVALIDATE_ALL_SECTIONS_MARKER; } } return [ 'sections' => $sections, ]; } }