-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.php
More file actions
79 lines (77 loc) · 2.56 KB
/
manifest.php
File metadata and controls
79 lines (77 loc) · 2.56 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
$manifest = array(
'acceptable_sugar_flavors' => array(
0 => 'CE',
1 => 'PRO',
2 => 'ENT',
3 => 'DEV'
),
'acceptable_sugar_versions' => array(
'regex_matches' => array(
0 => "^(\d+\.)?(\d+\.)?(\*|\d+)$"
),
),
'readme' => '',
'key' => 'job05171967',
'author' => 'Kenneth Brill [ken.brill@gmail.com]',
'description' => 'Give the Job_Queue a nice Sugar module front end',
'icon' => '',
'is_uninstallable' => true,
'name' => 'Job_Queue',
'published_date' => '2021-01-25 21:30:39',
'type' => 'module',
'version' => '1.0',
'remove_tables' => 'false',
);
$installdefs = array(
'id' => 'Job_Queue',
'administration' => array(
array(
'from' => '<basepath>/SugarModules/custom/Extension/modules/Administration/Ext/Administration/job_queue.php'
)
),
'beans' =>
array(
0 =>
array(
'module' => 'job_queue',
'class' => 'job_queue',
'path' => 'modules/job_queue/job_queue.php',
'tab' => false,
),
),
'layoutdefs' =>
array(),
'relationships' =>
array(),
'copy' =>
array(
0 =>
array(
'from' => '<basepath>/SugarModules/modules/job_queue',
'to' => 'modules/job_queue',
),
),
'language' =>
array(
0 =>
array(
'from' => '<basepath>/SugarModules/language/application/en_us.lang.php',
'to_module' => 'application',
'language' => 'en_us',
),
1 =>
array(
'from' => '<basepath>/SugarModules/custom/Extension/modules/Administration/Ext/Language/en_us.job_queue.php',
'to_module' => 'Administration',
'language' => 'en_us'
),
2 =>
array(
'from' => '<basepath>/SugarModules/custom/Extension/Language/en_us.job_queue.php',
'to_module' => 'application',
'language' => 'en_us'
)
),
'image_dir' => '<basepath>/icons',
);