![]() 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-backend/Model/View/Layout/Reader/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Layout\Reader; use Magento\Framework\View\Layout; use Magento\Framework\Data\Argument\InterpreterInterface; use Magento\Framework\View\Layout\Reader\Visibility\Condition; /** * Backend block structure reader with ACL support * @api * @since 100.0.2 */ class Block extends Layout\Reader\Block { /** * Initialize dependencies. * * @param Layout\ScheduledStructure\Helper $helper * @param Layout\Argument\Parser $argumentParser * @param Layout\ReaderPool $readerPool * @param InterpreterInterface $argumentInterpreter * @param Condition $conditionReader * @param string|null $scopeType */ public function __construct( Layout\ScheduledStructure\Helper $helper, Layout\Argument\Parser $argumentParser, Layout\ReaderPool $readerPool, InterpreterInterface $argumentInterpreter, Condition $conditionReader, $scopeType = null ) { $this->attributes[] = 'acl'; parent::__construct( $helper, $argumentParser, $readerPool, $argumentInterpreter, $conditionReader, $scopeType ); } }