-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.php
113 lines (112 loc) · 3.63 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
/**
* @license http://hardsoft321.org/license/ GPLv3
* @author Leon Nikitin <[email protected]>
* @package hs321_erp
*/
$manifest = array(
'name' => 'hs321_erp',
'acceptable_sugar_versions' => array(),
'acceptable_sugar_flavors' => array('CE'),
'author' => 'Leon.V.Nikitin ([email protected])',
'description' => 'Добавление ERP функционала в SuiteCRM',
'is_uninstallable' => true,
'published_date' => '2023-04-28',
'type' => 'module',
'version' => '0.12.3',
'dependencies' => array(
)
);
$installdefs = array(
'id' => 'hs321_erp',
'copy' => array (
array (
'from' => '<basepath>/source/copy',
'to' => '.',
),
),
'vardefs'=>array(
array (
'from' => '<basepath>/source/vardefs/AOS_Products_Quotes/erp_vardefs.php',
'to_module' => 'AOS_Products_Quotes',
),
array (
'from' => '<basepath>/source/vardefs/AOS_Products/erp_vardefs.php',
'to_module' => 'AOS_Products',
),
),
'logic_hooks' => array(
array(
'module' => 'AOS_Products_Quotes',
'hook' => 'before_save',
'order' => 100,
'description' => 'Recalculating fact and plan remains for Quotes Positions',
'file' => 'modules/AOS_ERP/RecalculateRemainsHook.php',
'class' => 'RecalculateRemainsHook',
'function' => 'before_save',
),
),
'action_file_map' => array(
array(
'from' => '<basepath>/source/action_file_map/RecalculatePlanRemains.php',
'to_module' => 'AOS_ERP',
),
),
'language'=> array (
array(
'from'=> '<basepath>/source/language/application/ru_ru.lang.php',
'to_module'=> 'application',
'language'=>'ru_ru'
),
array(
'from'=> '<basepath>/source/language/application/en_us.lang.php',
'to_module'=> 'application',
'language'=>'en_us'
),
array(
'from'=> '<basepath>/source/language/modules/AOS_ERP/ru_ru.lang.php',
'to_module'=> 'AOS_ERP',
'language'=>'ru_ru'
),
array(
'from'=> '<basepath>/source/language/modules/AOS_ERP/en_us.lang.php',
'to_module'=> 'AOS_ERP',
'language'=>'en_us'
),
array(
'from'=> '<basepath>/source/language/modules/AOS_Products_Quotes/ru_ru.lang.php',
'to_module'=> 'AOS_Products_Quotes',
'language'=>'ru_ru'
),
array(
'from'=> '<basepath>/source/language/modules/AOS_Products_Quotes/en_us.lang.php',
'to_module'=> 'AOS_Products_Quotes',
'language'=>'en_us'
),
array(
'from'=> '<basepath>/source/language/modules/AOS_Products/ru_ru.lang.php',
'to_module'=> 'AOS_Products',
'language'=>'ru_ru'
),
array(
'from'=> '<basepath>/source/language/modules/AOS_Products/en_us.lang.php',
'to_module'=> 'AOS_Products',
'language'=>'en_us'
),
array(
'from' => '<basepath>/source/language/Administration/en_us.lang.php',
'to_module' => 'Administration',
'language' => 'en_us'
),
array(
'from' => '<basepath>/source/language/Administration/ru_ru.lang.php',
'to_module' => 'Administration',
'language' => 'ru_ru'
),
),
'administration' => array(
array(
'from' => '<basepath>/source/Administration/menu/erp_group_admin.php'
)
),
);