-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.php
More file actions
40 lines (38 loc) · 990 Bytes
/
metadata.php
File metadata and controls
40 lines (38 loc) · 990 Bytes
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.1';
/**
* Module information
*/
$aModule = array(
'id' => 'mdmodule',
'title' => array(
'de' => 'Moritz Modul',
'en' => 'Moritz Module',
),
'description' => array(
'de' => '<h2>Enorm krankes Modul/h2>',
'en' => '<h2>Really impressive module</h2>',
),
'thumbnail' => 'out/pictures/linslin-org-logo.png',
'version' => '1.0.0',
'author' => 'Moritz Demmer',
'email' => 'info@linslin.org',
'extend' => array(
),
'controllers' => array(
'linslinexamplemodulemain' => \linslin\oxid6ExampleModule\Controller\Admin\MainController::class,
),
'files' => array(),
'templates' => array(
'main.tpl' => 'linslin/oxid6-example-module/views/admin/main.tpl'
),
'blocks' => array(),
'settings' => array(),
'events' => array(),
);