2022-07-15 11:06:20 +02: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 <support@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-08-03 22:53:54 +02:00
|
|
|
use D3\Linkmobility4Ordermanager\Modules\Ordermanager\Application\Model\d3ordermanager_conf_linkmobility;
|
|
|
|
use D3\Ordermanager\Application\Model\d3ordermanager_conf;
|
2022-07-15 11:06:20 +02:00
|
|
|
|
|
|
|
$sMetadataVersion = '2.1';
|
|
|
|
$sModuleId = 'd3linkmobility4ordermanager';
|
|
|
|
$sD3Logo = '<img src="https://logos.oxidmodule.com/d3logo.svg" alt="(D3)" style="height:1em;width:1em"> ';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module information
|
|
|
|
*/
|
|
|
|
$aModule = [
|
|
|
|
'id' => $sModuleId,
|
|
|
|
'title' => $sD3Logo . ' Auftragsmanager-Erweiterung: LINK Mobility Mobile Messaging',
|
|
|
|
'description' => [
|
|
|
|
'de' => 'Anbindung der LINK Mobility API (Nachrichtenversand per SMS) an den D3 Auftragsmanager',
|
|
|
|
'en' => '',
|
|
|
|
],
|
|
|
|
'version' => '1.0.0.0',
|
|
|
|
'thumbnail' => 'picture.png',
|
|
|
|
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
|
|
|
|
'email' => 'support@shopmodule.com',
|
|
|
|
'url' => 'https://www.oxidmodule.com/',
|
|
|
|
'extend' => [
|
2022-08-03 22:53:54 +02:00
|
|
|
d3ordermanager_conf::class => d3ordermanager_conf_linkmobility::class
|
2022-07-15 11:06:20 +02:00
|
|
|
],
|
2022-08-03 22:53:54 +02:00
|
|
|
'controllers' => [],
|
2022-07-15 11:06:20 +02:00
|
|
|
'templates' => [
|
2022-08-03 22:53:54 +02:00
|
|
|
'd3linkmobility_ordermanager_action.tpl' => 'd3/linkmobility4ordermanager/Application/views/admin/tpl/d3linkmobility_ordermanager_action.tpl'
|
2022-07-15 11:06:20 +02:00
|
|
|
],
|
|
|
|
'events' => [],
|
2022-08-03 22:53:54 +02:00
|
|
|
'blocks' => [],
|
|
|
|
'settings' => []
|
2022-07-15 11:06:20 +02:00
|
|
|
];
|