-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.php
48 lines (48 loc) · 1.45 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
<?php
$manifest = array(
'name' => 's2s_integration',
'acceptable_sugar_versions' => array(),
'acceptable_sugar_flavors' => array('CE'),
'author' => 'hardsoft321',
'description' => 'Компоненты для интеграции между двумя SugarCRM',
'is_uninstallable' => true,
'published_date' => '2015-12-16',
'type' => 'module',
'version' => '1.1.1',
);
$installdefs = array(
'id' => 's2s_integration',
'copy' => array(
array(
'from' => '<basepath>/source/copy',
'to' => '.'
),
),
'language' => array(
array (
'from' => '<basepath>/source/language/Schedulers/ru_ru.s2s_integration.php',
'to_module' => 'Schedulers',
'language' => 'ru_ru',
),
array (
'from' => '<basepath>/source/language/Schedulers/en_us.s2s_integration.php',
'to_module' => 'Schedulers',
'language' => 'en_us',
),
array (
'from' => '<basepath>/source/language/Schedulers/es_es.s2s_integration.php',
'to_module' => 'Schedulers',
'language' => 'es_es',
),
),
'relationships' => array(
array(
'meta_data' => '<basepath>/source/relationships/s2s_integration.php',
),
),
'scheduledefs' => array(
array(
'from' => '<basepath>/source/scheduledefs/s2s_integration.php',
),
),
);