-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.php
More file actions
53 lines (51 loc) · 1.69 KB
/
manifest.php
File metadata and controls
53 lines (51 loc) · 1.69 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
$manifest = array(
'key' => '05171967',
'name' => 'sqlViewer',
'acceptable_sugar_flavors' => array(
0 => 'CE',
1 => 'PRO',
2 => 'ENT',
3 => 'DEV'
),
'acceptable_sugar_versions' => array(
'regex_matches' => array(
0 => "^(\d+\.)?(\d+\.)?(\*|\d+)$"
),
),
'description' => 'Formats prepared SQL to be readable',
'author' => 'Kenneth Brill [ken.brill@gmail.com]',
'version' => '1.0',
'is_uninstallable' => true,
'published_date' => '01/24/2021 14:15:12',
'type' => 'module',
'readme' => '',
'icon' => 'sqlViewer.png',
'remove_tables' => '',
'uninstall_before_upgrade' => false,
);
$installdefs = array(
'id' => 'sqlViewer',
'administration' => array(
array(
'from' => '<basepath>/custom/Extension/modules/Administration/Ext/Administration/sqlViewer.php'
)
),
'language' => array(
array(
'from' => '<basepath>/custom/Extension/modules/Administration/Ext/Language/en_us.sqlViewer.php',
'to_module' => 'Administration',
'language' =>'en_us'
)
),
'copy' => array(
array(
'from' => '<basepath>/custom/modules/Administration/sqlViewer.php',
'to' => 'custom/modules/Administration/sqlViewer.php',
),
array(
'from' => '<basepath>/custom/modules/Administration/sqlViewer.tpl',
'to' => 'custom/modules/Administration/sqlViewer.tpl',
),
)
);