![]() 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-tax/Block/Adminhtml/Rate/Title/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** * Tax Rate Titles Fieldset * * @author Magento Core Team <[email protected]> */ namespace Magento\Tax\Block\Adminhtml\Rate\Title; class Fieldset extends \Magento\Framework\Data\Form\Element\Fieldset { /** * @var \Magento\Tax\Block\Adminhtml\Rate\Title */ protected $_title; /** * @param \Magento\Framework\Data\Form\Element\Factory $factoryElement * @param \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection * @param \Magento\Framework\Escaper $escaper * @param \Magento\Tax\Block\Adminhtml\Rate\Title $title * @param array $data */ public function __construct( \Magento\Framework\Data\Form\Element\Factory $factoryElement, \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection, \Magento\Framework\Escaper $escaper, \Magento\Tax\Block\Adminhtml\Rate\Title $title, $data = [] ) { $this->_title = $title; parent::__construct($factoryElement, $factoryCollection, $escaper, $data); } /** * @return string */ public function getBasicChildrenHtml() { return $this->_title->toHtml(); } }