2023-12-08 14:31:53 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* https://www.d3data.de
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-12-11 10:38:59 +01:00
|
|
|
use D3\MailConfigChecker\Application\Controller\Admin\MailCheckBase;
|
|
|
|
use D3\MailConfigChecker\Application\Controller\Admin\MailCheckMenu;
|
|
|
|
use D3\MailConfigChecker\Application\Controller\Admin\MailConfigCheck;
|
2023-12-13 14:12:50 +01:00
|
|
|
use D3\MailConfigChecker\Application\Controller\Admin\MailInfoPage;
|
2023-12-11 10:38:59 +01:00
|
|
|
use D3\MailConfigChecker\Application\Controller\Admin\MailTester;
|
2023-12-11 15:48:31 +01:00
|
|
|
use D3\MailConfigChecker\Application\Controller\Admin\SpfChecker;
|
|
|
|
use D3\MailConfigChecker\Application\Controller\Admin\SmtpChecker;
|
2024-05-31 16:31:25 +02:00
|
|
|
use D3\MailConfigChecker\Application\Model\Constants;
|
2023-12-08 15:16:48 +01:00
|
|
|
|
2023-12-08 14:31:53 +01:00
|
|
|
$sMetadataVersion = '2.1';
|
|
|
|
|
|
|
|
$logo = '<img src="https://logos.oxidmodule.com/d3logo.svg" alt="(D3)" style="height:1em;width:1em">';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module information
|
|
|
|
*/
|
|
|
|
$aModule = [
|
2024-05-31 16:31:25 +02:00
|
|
|
'id' => Constants::OXID_MODULE_ID,
|
2023-12-12 13:41:18 +01:00
|
|
|
'title' => [
|
|
|
|
'de' => $logo.' E-Mail Konfigurationsprüfung',
|
|
|
|
'en' => $logo.' Mail Configuration Check Tool',
|
|
|
|
],
|
2023-12-08 14:31:53 +01:00
|
|
|
'description' => [
|
|
|
|
'de' => '',
|
|
|
|
'en' => '',
|
|
|
|
],
|
|
|
|
'thumbnail' => 'picture.svg',
|
2024-07-10 08:30:11 +02:00
|
|
|
'version' => '3.0.1.0',
|
2023-12-08 14:31:53 +01:00
|
|
|
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
|
|
|
|
'email' => 'support@shopmodule.com',
|
|
|
|
'url' => 'https://www.oxidmodule.com/',
|
|
|
|
'controllers' => [
|
2023-12-11 15:48:31 +01:00
|
|
|
'd3mailcheck' => MailCheckBase::class,
|
2023-12-11 10:38:59 +01:00
|
|
|
'd3mailcheckmenu' => MailCheckMenu::class,
|
2023-12-13 14:12:50 +01:00
|
|
|
'd3mailinfopage' => MailInfoPage::class,
|
2023-12-11 15:48:31 +01:00
|
|
|
'd3mailconfigcheck' => MailConfigCheck::class,
|
|
|
|
'd3smtpchecker' => SmtpChecker::class,
|
|
|
|
'd3spfchecker' => SpfChecker::class,
|
|
|
|
'd3mailtester' => MailTester::class,
|
2023-12-08 14:31:53 +01:00
|
|
|
],
|
|
|
|
'templates' => [
|
2024-05-31 16:31:25 +02:00
|
|
|
'@' . Constants::OXID_MODULE_ID . '/admin/mailCheckBase.tpl' => 'views/smarty/admin/mailcheckbase.tpl',
|
|
|
|
'@' . Constants::OXID_MODULE_ID . '/admin/mailCheckMenu.tpl' => 'views/smarty/admin/mailcheckmenu.tpl',
|
|
|
|
'@' . Constants::OXID_MODULE_ID . '/admin/mailInfoPage.tpl' => 'views/smarty/admin/mailinfopage.tpl',
|
|
|
|
'@' . Constants::OXID_MODULE_ID . '/admin/mailConfigCheck.tpl' => 'views/smarty/admin/mailconfigcheck.tpl',
|
|
|
|
'@' . Constants::OXID_MODULE_ID . '/admin/smtpCheck.tpl' => 'views/smarty/admin/smtpCheck.tpl',
|
|
|
|
'@' . Constants::OXID_MODULE_ID . '/admin/spfCheck.tpl' => 'views/smarty/admin/spfCheck.tpl',
|
|
|
|
'@' . Constants::OXID_MODULE_ID . '/admin/mailTester.tpl' => 'views/smarty/admin/mailTester.tpl',
|
|
|
|
'@' . Constants::OXID_MODULE_ID . '/admin/inc_bootstrap.tpl' => 'views/smarty/admin/inc/bootstrap.tpl',
|
2023-12-08 14:31:53 +01:00
|
|
|
],
|
|
|
|
];
|