![]() 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/safemage/extensions/Block/Adminhtml/System/Config/ |
<?php /* NOTICE OF LICENSE This source file is subject to the SafeMageEULA that is bundled with this package in the file LICENSE.txt. It is also available at this URL: https://www.safemage.com/LICENSE_EULA.txt Copyright (c) SafeMage (https://www.safemage.com/) */ namespace SafeMage\Extensions\Block\Adminhtml\System\Config; /** * Creates custom group with custom template under Store->Configuration->SafeMage->Extensions. */ class Extension extends \Magento\Config\Block\System\Config\Form\Fieldset { /** * Return header html for fieldset. * * @param \Magento\Framework\Data\Form\Element\AbstractElement $element * @return string */ protected function _getHeaderHtml($element) { return parent::_getHeaderHtml($element) . $this->getContentHtml(); } /** * Set custom template for the fieldset. * * @return string * @throws \Magento\Framework\Exception\LocalizedException */ private function getContentHtml() { return $this->getLayout() ->createBlock( \SafeMage\Extensions\Block\Adminhtml\System\Config\Extension\ExtensionsList::class, 'safemage_extensions_extension_list' ) ->setTemplate('SafeMage_Extensions::extensions/system/list.phtml') ->toHtml(); } }