-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
36 lines (34 loc) · 1.16 KB
/
metadata.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* Metadata version
*/
$sMetadataVersion = '2.1';
/**
* Module information
*/
$aModule = [
'id' => 'articlealertpoc',
'title' => [
'de' => 'PaBlo - Artikel Alarm',
'en' => 'PaBlo - article alert',
],
'description' => [
'de' => 'Diese Modul ermöglicht dem Kunden sich benachrichtigen zu lassen, sobald ein ausverkaufter Artikel wieder verfügbar ist.',
'en' => 'This module allows the customer to be informed as soon as a sold out item is available again.',
],
'version' => '1.0.0',
'author' => 'Patrick Blom',
'url' => 'https://www.patrick-blom.de/',
'email' => '[email protected]',
'extend' => [
\OxidEsales\Eshop\Application\Controller\ArticleDetailsController::class => \PaBlo\ArticleAlert\Infrastructure\Application\Controller\ArticleDetails::class,
],
'blocks' => [
[
'template' => 'page/details/inc/productmain.tpl',
'block' => 'details_productmain_tobasket',
'file' => 'Infrastructure/Application/views/blocks/page/deatils/inc/productmain__details_productmain_tobasket.tpl',
'position' => '1',
]
]
];