|
Apache/2.4.41 (Ubuntu) Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) server ip : 62.171.164.128 | your ip : 127.0.0.1 safemode OFF > / home / dev2.destoffenstraat.com / vendor / amasty / base / Block / Adminhtml / System / Config / |
Filename | /home/dev2.destoffenstraat.com/vendor/amasty/base/Block/Adminhtml/System/Config/Information.php |
Size | 2.29 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 17-Aug-2025 10:26 |
Last modified | 16-Aug-2022 09:35 |
Last accessed | 23-Aug-2025 03:56 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
/**
* @author Amasty Team
* @copyright Copyright (c) 2022 Amasty (https://www.amasty.com)
* @package Magento 2 Base Package
*/
declare(strict_types=1);
namespace Amasty\Base\Block\Adminhtml\System\Config;
use Magento\Backend\Block\Context;
use Magento\Backend\Model\Auth\Session;
use Magento\Config\Block\System\Config\Form\Fieldset;
use Magento\Framework\Data\Form\Element\AbstractElement;
use Magento\Framework\View\Helper\Js;
use Magento\Framework\View\LayoutFactory;
class Information extends Fieldset
{
public const SEO_PARAMS = '?utm_source=extension&utm_medium=backend&utm_campaign=';
/**
* @var LayoutFactory
*/
private $layoutFactory;
public function __construct(
Context $context,
Session $authSession,
Js $jsHelper,
LayoutFactory $layoutFactory,
array $data = []
) {
parent::__construct($context, $authSession, $jsHelper, $data);
$this->layoutFactory = $layoutFactory;
}
public function render(AbstractElement $element)
{
if (!($moduleCode = $element->getDataByPath('group/module_code'))
|| $moduleCode === 'Amasty_Base'
|| !($innerHtml = $this->getInnerHtml($moduleCode, $element))
) {
return '';
}
$html = $this->_getHeaderHtml($element)
. $innerHtml
. $this->_getFooterHtml($element);
$html = str_replace(
'amasty_information]" type="hidden" value="0"',
'amasty_information]" type="hidden" value="1"',
$html
);
return preg_replace('(onclick=\"Fieldset.toggleCollapse.*?\")', '', $html);
}
private function getInnerHtml(string $moduleCode, AbstractElement $element): string
{
$html = '';
$layout = $this->layoutFactory->create(['cacheable' => false]);
$layout->getUpdate()->load(
[
'amasty_base_information_block',
strtolower($moduleCode) . '_information_block'
]
);
$layout->generateXml();
$layout->generateElements();
$basicBlock = $layout->getBlock('aminfotab.basic');
if ($basicBlock) {
$basicBlock->setData('element', $element);
$html .= $basicBlock->toHtml();
}
return $html;
}
}
/**
* @author Amasty Team
* @copyright Copyright (c) 2022 Amasty (https://www.amasty.com)
* @package Magento 2 Base Package
*/
declare(strict_types=1);
namespace Amasty\Base\Block\Adminhtml\System\Config;
use Magento\Backend\Block\Context;
use Magento\Backend\Model\Auth\Session;
use Magento\Config\Block\System\Config\Form\Fieldset;
use Magento\Framework\Data\Form\Element\AbstractElement;
use Magento\Framework\View\Helper\Js;
use Magento\Framework\View\LayoutFactory;
class Information extends Fieldset
{
public const SEO_PARAMS = '?utm_source=extension&utm_medium=backend&utm_campaign=';
/**
* @var LayoutFactory
*/
private $layoutFactory;
public function __construct(
Context $context,
Session $authSession,
Js $jsHelper,
LayoutFactory $layoutFactory,
array $data = []
) {
parent::__construct($context, $authSession, $jsHelper, $data);
$this->layoutFactory = $layoutFactory;
}
public function render(AbstractElement $element)
{
if (!($moduleCode = $element->getDataByPath('group/module_code'))
|| $moduleCode === 'Amasty_Base'
|| !($innerHtml = $this->getInnerHtml($moduleCode, $element))
) {
return '';
}
$html = $this->_getHeaderHtml($element)
. $innerHtml
. $this->_getFooterHtml($element);
$html = str_replace(
'amasty_information]" type="hidden" value="0"',
'amasty_information]" type="hidden" value="1"',
$html
);
return preg_replace('(onclick=\"Fieldset.toggleCollapse.*?\")', '', $html);
}
private function getInnerHtml(string $moduleCode, AbstractElement $element): string
{
$html = '';
$layout = $this->layoutFactory->create(['cacheable' => false]);
$layout->getUpdate()->load(
[
'amasty_base_information_block',
strtolower($moduleCode) . '_information_block'
]
);
$layout->generateXml();
$layout->generateElements();
$basicBlock = $layout->getBlock('aminfotab.basic');
if ($basicBlock) {
$basicBlock->setData('element', $element);
$html .= $basicBlock->toHtml();
}
return $html;
}
}