![]() 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/cartforge.co/vendor/magento/module-config/Model/Config/Structure/Element/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element; /** * Element section * * @api * @since 100.0.2 */ class Section extends AbstractComposite { /** * Authorization service * * @var \Magento\Framework\AuthorizationInterface */ protected $_authorization; /** * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\Module\Manager $moduleManager * @param Iterator $childrenIterator * @param \Magento\Framework\AuthorizationInterface $authorization */ public function __construct( \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Module\Manager $moduleManager, Iterator $childrenIterator, \Magento\Framework\AuthorizationInterface $authorization ) { parent::__construct($storeManager, $moduleManager, $childrenIterator); $this->_authorization = $authorization; } /** * Retrieve section header css * * @return string */ public function getHeaderCss() { return $this->_data['header_css'] ?? ''; } /** * Check whether section is allowed for current user * * @return bool */ public function isAllowed() { return isset($this->_data['resource']) ? $this->_authorization->isAllowed($this->_data['resource']) : false; } /** * Check whether element should be displayed * * @return bool */ public function isVisible() { if (!$this->isAllowed()) { return false; } return parent::isVisible(); } }