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;
|
|
|
|
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;
|
2023-12-08 15:16:48 +01:00
|
|
|
|
2023-12-08 14:31:53 +01:00
|
|
|
$sMetadataVersion = '2.1';
|
|
|
|
|
2023-12-09 13:32:01 +01:00
|
|
|
$sModuleId = 'd3mailconfigchecker';
|
2023-12-08 14:31:53 +01:00
|
|
|
$logo = '<img src="https://logos.oxidmodule.com/d3logo.svg" alt="(D3)" style="height:1em;width:1em">';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module information
|
|
|
|
*/
|
|
|
|
$aModule = [
|
|
|
|
'id' => $sModuleId,
|
2023-12-09 13:32:01 +01:00
|
|
|
'title' => $logo.' Mail Configuration Checker',
|
2023-12-08 14:31:53 +01:00
|
|
|
'description' => [
|
|
|
|
'de' => '',
|
|
|
|
'en' => '',
|
|
|
|
],
|
|
|
|
'thumbnail' => 'picture.svg',
|
|
|
|
'version' => '1.0.0.0',
|
|
|
|
'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-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
|
|
|
],
|
|
|
|
'extend' => [
|
|
|
|
// \OxidEsales\Eshop\Core\ShopControl::class => \D3\ThisModule\Modules\Core\ShopControl_MyModule::class
|
|
|
|
],
|
|
|
|
'events' => [
|
|
|
|
// 'onActivate' => '\D3\ThisModule\Setup\Events::onActivate',
|
|
|
|
// 'onDeactivate' => '\D3\ThisModule\Setup\Events::onDeactivate',
|
|
|
|
],
|
|
|
|
'templates' => [
|
2023-12-11 10:38:59 +01:00
|
|
|
'mailCheckBase.tpl' => 'd3/mailconfigchecker/Application/views/admin/tpl/mailcheckbase.tpl',
|
|
|
|
'mailCheckMenu.tpl' => 'd3/mailconfigchecker/Application/views/admin/tpl/mailcheckmenu.tpl',
|
2023-12-11 15:48:31 +01:00
|
|
|
'mailConfigCheck.tpl' => 'd3/mailconfigchecker/Application/views/admin/tpl/mailconfigcheck.tpl',
|
2023-12-11 10:38:59 +01:00
|
|
|
'smtpCheck.tpl' => 'd3/mailconfigchecker/Application/views/admin/tpl/smtpCheck.tpl',
|
2023-12-11 15:48:31 +01:00
|
|
|
'spfCheck.tpl' => 'd3/mailconfigchecker/Application/views/admin/tpl/spfCheck.tpl',
|
2023-12-11 10:38:59 +01:00
|
|
|
'mailTester.tpl' => 'd3/mailconfigchecker/Application/views/admin/tpl/mailTester.tpl',
|
2023-12-11 15:48:31 +01:00
|
|
|
|
|
|
|
'inc_bootstrap.tpl' => 'd3/mailconfigchecker/Application/views/admin/tpl/inc/bootstrap.tpl',
|
2023-12-08 14:31:53 +01:00
|
|
|
// 'flow_theme' => [
|
|
|
|
// 'd3FlowTemplateAlias.tpl' => 'd3/thismodule/Application/views/tpl/d3FlowTheme.tpl',
|
|
|
|
// ],
|
|
|
|
],
|
|
|
|
'settings' => [
|
|
|
|
// [
|
|
|
|
// 'group' => $sModuleId.'_headline',
|
|
|
|
// 'name' => $sModuleId.'_name',
|
|
|
|
// 'type' => 'bool',
|
|
|
|
// 'value' => false,
|
|
|
|
// ],
|
|
|
|
],
|
|
|
|
'blocks' => [
|
|
|
|
// [
|
|
|
|
// 'template' => 'layout/footer.tpl',
|
|
|
|
// 'block' => 'footer_main',
|
|
|
|
// 'file' => 'Application/views/blocks/layout/footer_main_mymodule.tpl'
|
|
|
|
// ]
|
|
|
|
],
|
|
|
|
'smartyPluginDirectories' => [
|
|
|
|
// 'Core/Smarty/Plugin'
|
|
|
|
],
|
|
|
|
];
|