2023-12-11 10:38:59 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2024-06-03 07:57:58 +02:00
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
2023-12-11 10:38:59 +01:00
|
|
|
*
|
|
|
|
* https://www.d3data.de
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
2024-06-03 07:57:58 +02:00
|
|
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
2023-12-11 10:38:59 +01:00
|
|
|
* @link https://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace D3\MailConfigChecker\Application\Controller\Admin;
|
|
|
|
|
2024-05-31 16:31:25 +02:00
|
|
|
use D3\MailConfigChecker\Application\Model\Constants;
|
2023-12-11 10:38:59 +01:00
|
|
|
use OxidEsales\Eshop\Application\Controller\Admin\AdminController;
|
|
|
|
|
|
|
|
class MailCheckBase extends AdminController
|
|
|
|
{
|
2024-05-31 16:31:25 +02:00
|
|
|
protected $_sThisTemplate = '@'.Constants::OXID_MODULE_ID.'/admin/mailCheckBase';
|
2023-12-11 10:38:59 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function render(): string
|
|
|
|
{
|
|
|
|
$this->addTplParam('sListClass', MailCheckMenu::class);
|
2023-12-13 14:12:50 +01:00
|
|
|
$this->addTplParam('sMainClass', MailInfoPage::class);
|
2023-12-11 10:38:59 +01:00
|
|
|
|
|
|
|
return parent::render();
|
|
|
|
}
|
|
|
|
}
|