-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
36 lines (33 loc) · 946 Bytes
/
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
*/
use De\Swebhosting\Createorder\Controller\Admin\UserMain as UserMainExtended;
use OxidEsales\Eshop\Application\Controller\Admin\UserMain;
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'swh-createorder',
'title' => 'Admin order creation',
'version' => '1.0.0.',
'author' => 'Alexander Stehlik',
'extend' => [UserMain::class => UserMainExtended::class],
'controllers' => [],
'templates' => [],
'events' => [],
'blocks' => [
[
'template' => 'user_main.tpl',
'block' => 'admin_user_main_assign_groups',
'file' => '/views/blocks/admin_user_main_assign_groups.tpl',
],
[
'template' => 'order_main.tpl',
'block' => 'admin_order_main_form_details',
'file' => '/views/blocks/admin_order_main_form_details.tpl',
],
],
'settings' => [],
];