forked from QuickCRM/QuickCRM-Basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.php
82 lines (77 loc) · 1.86 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
77
78
79
80
81
82
<?php
$manifest = array (
'acceptable_sugar_versions' =>
array (
'6.*',
),
'acceptable_sugar_flavors' =>
array(
'CE'
),
'readme'=>'',
'key'=>'',
'author' => 'NS-Team',
'description' => 'Gives mobile access to SugarCRM data',
'icon' => '',
'is_uninstallable' => true,
'name' => 'QuickCRM Mobile Basic',
'published_date' => '2017-10-27',
'type' => 'module',
'version' => '3.4.0',
'remove_tables' => 'false',
);
$installdefs = array (
'id' => 'QuickCRM_Mobile_CE',
'copy' =>
array (
array (
'from' => '<basepath>/mobile',
'to' => 'mobile',
),
array(
'from' => '<basepath>/modules/Administration/genJSfromSugar.php',
'to' => 'custom/modules/Administration/genJSfromSugar.php'
),
array(
'from' => '<basepath>/modules/Administration/updatequickcrm.php',
'to' => 'custom/modules/Administration/updatequickcrm.php'
),
array(
'from' => '<basepath>/modules/QuickCRM',
'to' => 'custom/QuickCRM'
),
array(
'from' => '<basepath>/Extension',
'to' => 'custom/Extension'
),
array(
'from' => '<basepath>/service/quickcrm',
'to' => 'service/quickcrm'
),
),
'language' =>
array (
array (
'from' => '<basepath>/modules/Administration/language/en_us.admin.php',
'to_module' => 'Administration',
'language' => 'en_us',
),
array (
'from' => '<basepath>/modules/Administration/language/de_de.admin.php',
'to_module' => 'Administration',
'language' => 'de_de',
),
array (
'from' => '<basepath>/modules/Administration/language/fr_FR.admin.php',
'to_module' => 'Administration',
'language' => 'fr_FR',
),
),
'administration' =>
array(
array(
'from'=>'<basepath>/modules/Administration/quickcrmadminoption_ce.php',
),
),
);
?>