-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.php
More file actions
54 lines (53 loc) · 1.68 KB
/
manifest.php
File metadata and controls
54 lines (53 loc) · 1.68 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
<?php
global $sugar_config;
$sugarVersion = isset($sugar_config['suitecrm_version']) ? 'Suite'.$sugar_config['suitecrm_version'] : $sugar_config['sugar_version'];
$manifest = array(
'name' => 'DbAppListStrings',
'acceptable_sugar_versions' => array(),
'acceptable_sugar_flavors' => array('CE'),
'author' => 'hardsoft321',
'description' => 'Добавление и редактирование справочников',
'is_uninstallable' => true,
'published_date' => '2017-08-14',
'type' => 'module',
'version' => '1.1.0',
);
$installdefs = array(
'id' => 'DbAppListStrings',
'beans' => array(
array(
'module' => 'DbAppLists',
'class' => 'DbAppList',
'path' => 'modules/DbAppLists/DbAppList.php',
'tab' => true,
),
array(
'module' => 'DbAppListStrings',
'class' => 'DbAppListString',
'path' => 'modules/DbAppListStrings/DbAppListString.php',
'tab' => false,
),
),
'copy' => array(
array(
'from' => '<basepath>/source/copy',
'to' => '.'
),
array (
'from' => "<basepath>/source/upgrade_unsafe/{$sugarVersion}/",
'to' => '.',
),
),
'language' => array(
array(
'from' => '<basepath>/source/language/application/ru_ru.DbAppListStrings.php',
'to_module' => 'application',
'language' => 'ru_ru',
),
array(
'from' => '<basepath>/source/language/application/en_us.DbAppListStrings.php',
'to_module' => 'application',
'language' => 'en_us',
),
),
);