-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
48 lines (47 loc) · 2.03 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
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*
* @link https://github.com/job963/jxOrderFields
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
* @copyright (C) Joachim Barthel 2016-2018
*
*/
$aModule = array(
'id' => 'jxorderfields',
'title' => 'jxOrderFields - Add more fields to oxOrderArticles',
'description' => array(
'de' => 'Fügt weitere Felder aus oxArticles zur oxOrderArticles Tabelle hinzu und kopiert deren Werte am Ende des Bestellprozess.',
'en' => 'Adds more fields of oxArticles to oxOrderArticles table and copies the values at the end of the ordering process.'
),
'thumbnail' => 'jxorderfields.png',
'version' => '0.3.0',
'author' => 'Joachim Barthel',
'url' => 'https://github.com/job963/jxOrderFields',
'email' => 'jobarthel@gmail.com',
'extend' => array(
OxidEsales\Eshop\Application\Model\OrderArticle::class => \JxMods\JxOrderFields\Application\Models\OrderArticle::class
),
'files' => array(/*
'jxorderfields_events' => 'jxmods/jxorderfields/application/events/jxorderfields_events.php',
*/),
'templates' => array(
),
'events' => array(
'onActivate' => '\JxMods\JxOrderFields\Core\Events::onActivate',
'onDeactivate' => '\JxMods\JxOrderFields\Core\Events::onDeactivate'
),
'settings' => array(
array(
'group' => 'JXORDERFIELDS_SETTINGS',
'name' => 'aJxOrderFieldsSaveFields',
'type' => 'arr',
'value' => array(),
'position' => 1
),
)
);