2018-01-25 11:27:47 +01:00
< ? php
2018-02-23 11:06:24 +01:00
use D3\Devhelper\Modules\Core as ModuleCore ;
use D3\Devhelper\Modules\Application\Controller as ModuleController ;
use D3\Devhelper\Modules\Application\Model as ModuleModel ;
use OxidEsales\Eshop\Application\Controller as OxidController ;
use OxidEsales\Eshop\Application\Model as OxidModel ;
use OxidEsales\Eshop\Core as OxidCore ;
2018-01-25 11:27:47 +01:00
use OxidEsales\Eshop\Core\Registry ;
/**
* Metadata version
*/
2018-02-23 10:11:26 +01:00
$sMetadataVersion = '2.0' ;
2018-01-25 11:27:47 +01:00
/**
* Module information
*/
$aModule = array (
'id' => 'd3dev' ,
'title' =>
2020-06-16 10:05:31 +02:00
'<svg style="height:1em;width:1em"><image xlink:href="https://logos.oxidmodule.com/d3logo.svg" style="height:1em;width:1em" /></svg> ' .
'TPL Development Tool' ,
2018-01-25 11:27:47 +01:00
'description' => array (
'de' => ' < script type = " text/javascript " ><!--
function showNote () {
var _oElem = document . getElementById ( " secnote " );
2018-02-23 12:30:57 +01:00
if ( _oElem . style . display === " block " ) {
2018-01-25 11:27:47 +01:00
_oElem . style . display = " none " ;
} else {
_oElem . style . display = " block " ;
}
}
--></ script >
< p style = " background-color: darkred; padding: 5px; " >< a href = " # " style = " text-decoration: underline; color: white; " onclick = " showNote(); return false; " >< b > Sicherheitshinweis </ b ></ a ></ p >
< p style = " display: none; background-color: darkred; color: white; padding: 5px; " id = " secnote " > Diese Shoperweiterung stellt Entwicklungshilfen zur Verf & uuml ; gung , die im Livebetrieb sicherheitskritisch sein k & ouml ; nnen . Es k & ouml ; nnen Kunden - und Bestelldaten ausgelesen und auch Shopfunktionen manipuliert werden . Aktivieren Sie diese Erweiterung daher nur in einem Umfeld , in dem Sie Missbrauch ausschlie & szligen k & ouml ; nnen . F & uuml ; r entstandene Sch & auml ; den lehnen wir jede Haftung ab .</ p >
< ul >< li > unterbindet L & ouml ; schen des Warenkorbs nach Bestellabschluss </ li > ' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=thankyou&d3dev=1&d3ordernr=" target="_new">Thankyou-Seite ist ohne Bestellung aufrufbar*</a></li>' .
'<li>Mail-Templates können im Browser ausgegeben werden' .
'<ul>' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=d3dev&fnc=showOrderMailContent&type=owner_html&d3ordernr=" target="_new">Order Owner HTML*</a></li>' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=d3dev&fnc=showOrderMailContent&type=owner_plain&d3ordernr=" target="_new">Order Owner Plain*</a></li>' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=d3dev&fnc=showOrderMailContent&type=user_html&d3ordernr=" target="_new">Order User HTML*</a></li>' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=d3dev&fnc=showOrderMailContent&type=user_plain&d3ordernr=" target="_new">Order User Plain*</a></li>' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=d3dev&fnc=showInquiryMailContent&type=owner_html&d3inquirynr=" target="_new">Inquiry Owner HTML*</a></li>' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=d3dev&fnc=showInquiryMailContent&type=owner_plain&d3inquirynr=" target="_new">Inquiry Owner Plain*</a></li>' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=d3dev&fnc=showInquiryMailContent&type=user_html&d3inquirynr=" target="_new">Inquiry User HTML*</a></li>' .
'<li><a style="text-decoration: underline;" href="' . Registry :: getConfig () -> getCurrentShopUrl ( false ) . 'index.php?cl=d3dev&fnc=showInquiryMailContent&type=user_plain&d3inquirynr=" target="_new">Inquiry User Plain*</a></li></ul>' .
'</li>' .
'<li>blockiert übers Framework versendete Mails oder leitet diese um</li>' .
'</ul><br>Jede dieser Optionen muss aus Sicherheitsgründen unter "Einstell." aktiviert werden. Weiterhin darf der Shop nicht im Produktivmodus betrieben werden.<br><br>' .
'* Ordernummer an URL ergänzen, wenn bestimmte Bestellungen angezeigt werden sollen' ,
'en' => '' ),
2019-10-18 22:08:52 +02:00
'version' => '2.0.1.0' ,
2018-01-25 11:27:47 +01:00
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)' ,
'email' => 'support@shopmodule.com' ,
'url' => 'http://www.oxidmodule.com/' ,
'extend' => array (
2018-02-23 11:06:24 +01:00
OxidController\ThankYouController :: class => ModuleController\d3_dev_thankyou :: class ,
OxidModel\Order :: class => ModuleModel\d3_dev_oxorder :: class ,
OxidModel\OrderArticle :: class => ModuleModel\d3_dev_oxorderarticle :: class ,
OxidCore\Email :: class => ModuleCore\d3_dev_oxemail :: class ,
OxidModel\Basket :: class => ModuleModel\d3_dev_oxbasket :: class ,
OxidModel\BasketItem :: class => ModuleModel\d3_dev_oxbasketitem :: class ,
2018-01-25 11:27:47 +01:00
),
2018-02-23 10:11:26 +01:00
'controllers' => array (
2018-02-23 11:06:24 +01:00
'd3dev' => \D3\Devhelper\Application\Controller\d3dev :: class ,
2018-01-25 11:27:47 +01:00
),
'templates' => array (
),
'events' => array (
),
'blocks' => array (
),
'settings' => array (
array (
'group' => 'd3dev_order' ,
'name' => 'blD3DevAvoidDelBasket' ,
'type' => 'bool' ,
'value' => 'false'
),
array (
'group' => 'd3dev_order' ,
'name' => 'blD3DevShowThankyou' ,
'type' => 'bool' ,
'value' => 'false'
),
array (
'group' => 'd3dev_mail' ,
'name' => 'blD3DevShowOrderMailsInBrowser' ,
'type' => 'bool' ,
'value' => 'false'
),
array (
'group' => 'd3dev_mailblock' ,
'name' => 'blD3DevBlockMails' ,
'type' => 'bool' ,
'value' => 'false'
),
array (
'group' => 'd3dev_mailblock' ,
'name' => 'sD3DevRedirectMail' ,
'type' => 'str' ,
'value' => 'd3test1@shopmodule.com'
),
),
);
if ( class_exists ( 'd3inquiry' )) {
2018-02-23 11:06:24 +01:00
$aModule [ 'extend' ][ 'd3inquiry' ] = ModuleModel\d3_dev_d3inquiry :: class ;
$aModule [ 'extend' ][ 'd3inquiryarticle' ] = ModuleModel\d3_dev_d3inquiryarticle :: class ;
2018-01-25 11:27:47 +01:00
}