* @link https://www.oxidmodule.com */ namespace D3\Importer\Application\Controller\Admin\Config; use D3\ModCfg\Application\Controller\Admin\d3_cfg_mod_; /** * Class d3_importercfg */ class Base extends d3_cfg_mod_ { /** * @var bool */ protected $_hasListItems = false; /** * @return string */ public function render() { $this->addTplParam('sListClass', AdminList::class); $this->addTplParam('sMainClass', Support::class); $sRet = parent::render(); $this->addTplParam('oxid', null); return $sRet; } }