-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmetadata.php
executable file
·36 lines (29 loc) · 988 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
/**
* Module-Metadata for the marmPiwik.
* @author Joscha Krug <[email protected]>
*/
$sMetadataVersion = '1.1';
$aModule = array(
'id' => 'marmpiwik',
'title' => 'marmalade :: Piwik',
'thumbnail' => 'marmalade.jpg',
'url' => 'http://www.marmalade.de',
'version' => '0.7',
'author' => 'marmalade GmbH',
'email' => '[email protected]',
'description' => array(
'de' => 'Tracking mit Piwik',
'en' => 'Tracking with Piwik'
),
'extend' => array(
'oxoutput' => 'marm/piwik/core/marm_piwik_oxoutput'
),
'files' => array(
'marm_piwik_setup' => 'marm/piwik/controllers/admin/marm_piwik_setup.php',
'marm_piwik' => 'marm/piwik/core/marm_piwik.php',
),
'templates' => array(
'marm_piwik_setup.tpl' => 'marm/piwik/views/admin/tpl/marm_piwik_setup.tpl'
)
);