-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmetadata.php
40 lines (38 loc) · 1.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
<?php
/**
* @TODO LICENCE HERE
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = array(
'id' => 'linslinExampleModule',
'title' => array(
'de' => 'OXID6 example module',
'en' => 'OXID6 example module',
),
'description' => array(
'de' => '<h2>OXID6 example module</h2>',
'en' => '<h2>OXID6 example module</h2>',
),
'thumbnail' => 'out/pictures/linslin-org-logo.png',
'version' => '1.0.0',
'author' => 'linslin.org UG | Codes and freedom',
'url' => 'https://www.linslin.org',
'email' => '[email protected]',
'extend' => array(
),
'controllers' => array(
'linslinexamplemodulemain' => \linslin\oxid6ExampleModule\Controller\Admin\MainController::class,
),
'templates' => array(
'main.tpl' => 'linslin/oxid6-example-module/views/admin/main.tpl'
),
'blocks' => array(),
'settings' => array(),
'events' => array(),
);