-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmetadata.php
More file actions
53 lines (50 loc) · 1.53 KB
/
metadata.php
File metadata and controls
53 lines (50 loc) · 1.53 KB
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
<?php
/**
* Metadata version
*/
$sMetadataVersion = '1.1';
$aModule = array(
'id' => 'raless',
'title' => 'ra less',
'description' => array(
'de' => 'Kompiliert LESS-Dateien in Themes und Modulen',
'en' => 'Compiles LESS files in themes and modules',
),
'email' => 'info@renzel-agentur.de',
'url' => 'http://www.renzel-agentur.de/',
'thumbnail' => 'picture.jpg',
'version' => '1.0',
'author' => 'role@vkf-renzel.de',
'extend' => array(
'oxutilsview' => 'ra/less/extend/raless_oxutilsview'
),
'blocks' => array(
array(
'template' => 'layout/base.tpl',
'block' => 'base_style',
'file' => 'views/ra/blocks/tpl/layout/base.tpl'
),
array(
'template' => 'theme_config.tpl',
'block' => 'admin_theme_config_form',
'file' => 'views/admin/blocks/tpl/theme_config.tpl'
)
),
'files' => array(
'RALessGeneratorService' => 'ra/less/core/ralessgeneratorservice.php'
),
'settings' => array(
array(
'group' => 'main',
'name' => 'sVariables',
'type' => 'str',
'value' => ''
),
array(
'group' => 'main',
'name' => 'sCDNUrl',
'type' => 'str',
'value' => ''
)
),
);