-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.php
executable file
·76 lines (74 loc) · 1.9 KB
/
manifest.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
$manifest = array (
0 =>
array (
'acceptable_sugar_versions' =>
array (
0 => '',
),
),
1 =>
array (
'acceptable_sugar_flavors' =>
array (
0 => 'CE',
1 => 'PRO',
2 => 'ENT',
3 => 'CORP',
4 => 'ULT',
),
),
'readme' => '',
'key' => 'BOARD',
'author' => 'Alex Sidorkin',
'description' => 'displaying opportunities in the kanban board',
'icon' => '',
'is_uninstallable' => true,
'name' => 'Kanban Board',
'published_date' => '2020-08-216 09:10:55',
'type' => 'module',
'version' => '2.0.0',
'remove_tables' => 'prompt',
);
$installdefs = array (
'id' => 'BOARD',
'beans' =>
array (
0 =>
array (
'module' => 'BOARD',
'class' => 'BOARD',
'path' => 'modules/BOARD/BOARD.php',
'tab' => true,
),
),
'layoutdefs' =>
array (
),
'relationships' =>
array (
),
'image_dir' => '<basepath>/icons',
'copy' =>
array (
0 =>
array (
'from' => '<basepath>/SugarModules/custom',
'to' => 'custom',
),
1 =>
array (
'from' => '<basepath>/SugarModules/modules/BOARD',
'to' => 'modules/BOARD',
),
),
'language' =>
array (
0 =>
array (
'from' => '<basepath>/SugarModules/language/application/en_us.lang.php',
'to_module' => 'application',
'language' => 'en_us',
),
),
);