-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.php
64 lines (53 loc) · 1.41 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
<?php
$manifest = array(
// only install on the following sugar versions (if empty, no check)
array (
'exact_matches' =>
array (
),
'regex_matches' =>
array (
0 => '6\.5\.0?'
),
),
// Version for which this langpack can work
'acceptable_sugar_flavors' =>
array (
0 => 'CE',
1 => 'PRO',
2 => 'ENT',
),
// name of the Pack
'name' => 'SugarCRM简体中文语言包(Simplified Chinese Language Pack)',
// description of new code
'description' => 'SugarCRM简体中文语言包(Simplified Chinese Language Pack)6.5.2',
// author of new code
'author' => '[email protected]',
// date published
'published_date' => '2012/07/31',
// version of code
'version' => '6.5.2',
// type of code (valid choices are: full, langpack, module, patch, theme )
'type' => 'langpack',
// icon for displaying in UI (path to graphic contained within zip package)
'icon' => '',
// Uninstall is allowed
'is_uninstallable' => TRUE,
);
$installdefs = array(
'id' => 'zh_cn',
'copy' => array(
array(
'from' => '<basepath>/modules',
'to' => 'modules',
),
array(
'from' => '<basepath>/include/language'),
'to' => 'include/language'
),
array(
'from' => '<basepath>/install/language',
'to' => 'install/language',
),
);
?>