forked from proudcommerce/categoryorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
executable file
·54 lines (46 loc) · 1.49 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
49
50
51
52
53
54
<?php
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = array(
'id' => 'marm/categoryorder',
'title' => 'marmalade :: Drag&Drop Artikelsortierung',
'description' => [
'de' => 'Sortieren Sie die Artikel einer Kategorie per Drag & Drop.',
'en' => 'Sort the products of a category in backend via drag & drop.',
],
'thumbnail' => 'marmalade.jpg',
'version' => '2.0.0',
'author' => 'Konstantin Kuznetsov, ProudCommerce',
'url' => 'http://www.marmalade.de',
'email' => '[email protected]',
'controllers' => [
'marm_category_order' => \Marmalade\CategoryOrder\Application\Controllers\Admin\CategoryOrderController::class,
],
'extend' => [
],
'templates' => [
'marm/categoryorder/categoryorder.tpl' => 'marm/categoryorder/Application/views/admin/tpl/marm_category_order.tpl',
'marm/categoryorder/categoryorder_popup.tpl' => 'marm/categoryorder/Application/views/admin/tpl/popups/marm_category_order_popup.tpl',
],
'blocks' => [
[
'template' => 'headitem.tpl',
'block' => 'admin_headitem_inccss',
'file' => 'Application/views/admin/tpl/headitem/inccss.block.tpl',
],
[
'template' => 'headitem.tpl',
'block' => 'admin_headitem_incjs',
'file' => 'Application/views/admin/tpl/headitem/incjs.block.tpl',
],
],
'settings' => [
],
'events' => [
],
);