![]() 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/Block/System/Config/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** * System configuration tabs block * * @method setTitle(string $title) * * @author Magento Core Team <[email protected]> */ namespace Magento\Config\Block\System\Config; /** * @api * @SuppressWarnings(PHPMD.CouplingBetweenObjects) * @since 100.0.2 */ class Tabs extends \Magento\Backend\Block\Widget { /** * Tabs * * @var \Magento\Config\Model\Config\Structure\Element\Iterator */ protected $_tabs; /** * Block template filename * * @var string */ protected $_template = 'Magento_Config::system/config/tabs.phtml'; /** * Currently selected section id * * @var string */ protected $_currentSectionId; /** * Current website code * * @var string */ protected $_websiteCode; /** * Current store code * * @var string */ protected $_storeCode; /** * @var \Magento\Backend\Helper\Data */ protected $_backendHelper; /** * @param \Magento\Backend\Block\Template\Context $context * @param \Magento\Config\Model\Config\Structure $configStructure * @param \Magento\Backend\Helper\Data $backendHelper * @param array $data */ public function __construct( \Magento\Backend\Block\Template\Context $context, \Magento\Config\Model\Config\Structure $configStructure, \Magento\Backend\Helper\Data $backendHelper, array $data = [] ) { $this->_backendHelper = $backendHelper; parent::__construct($context, $data); $this->_tabs = $configStructure->getTabs(); $this->setId('system_config_tabs'); $this->setTitle(__('Configuration')); $this->_currentSectionId = $this->getRequest()->getParam('section'); $this->_backendHelper->addPageHelpUrl($this->getRequest()->getParam('section') . '/'); } /** * Get all tabs * * @return \Magento\Config\Model\Config\Structure\Element\Iterator */ public function getTabs() { return $this->_tabs; } /** * Retrieve section url by section id * * @param \Magento\Config\Model\Config\Structure\Element\Section $section * @return string */ public function getSectionUrl(\Magento\Config\Model\Config\Structure\Element\Section $section) { return $this->getUrl('*/*/*', ['_current' => true, 'section' => $section->getId()]); } /** * Check whether section should be displayed as active * * @param \Magento\Config\Model\Config\Structure\Element\Section $section * @return bool */ public function isSectionActive(\Magento\Config\Model\Config\Structure\Element\Section $section) { return $section->getId() == $this->_currentSectionId; } }