-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmanifest.php
More file actions
86 lines (83 loc) · 2.49 KB
/
manifest.php
File metadata and controls
86 lines (83 loc) · 2.49 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
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
<?php
$manifest = array(
'acceptable_sugar_versions' => array(
'exact_matches' => array(
1 => '6.5.15'
),
'regex_matches' => array(
1 => '6\.4\.\d',
2 => '6\.[0-9]\.\d',
3 => '7\.[0-9]\.\d'
)
),
'acceptable_sugar_flavors' => array(
'CE',
'PRO',
'ENT',
'CORP'
),
'readme' => '',
'key' => '',
'author' => ' ',
'description' => 'SuiteCRM Click to Call (Asterisk)',
'icon' => '',
'is_uninstallable' => true,
'name' => 'SuiteCRM Click to Call (Asterisk)',
'published_date' => 'January 8, 2018',
'type' => 'module',
'version' => 'v0.0.1',
'remove_tables' => false
);
$installdefs = array(
'id' => 'ClickToCall',
'copy' => array(
0 => array(
'from' => '<basepath>/SugarModules/Extension/modules/Administration/Ext/',
'to' => 'custom/Extension/modules/Administration/Ext'
),
1 => array(
'from' => '<basepath>/SugarModules/Extension/modules/Users/Ext/Language',
'to' => 'custom/Extension/modules/Users/Ext/Language'
),
2 => array(
'from' => '<basepath>/SugarModules/modules/ClickToCall',
'to' => 'modules/ClickToCall'
),
3 => array(
'from' => '<basepath>/SugarModules/EntryPoint/clickToCall.php',
'to' => 'custom/Extension/application/Ext/EntryPointRegistry/clickToCall.php'
)
),
'mkdir' => array(),
'administration' => array(),
'custom_fields' => array(
array(
'id' => 'extension_id',
'name' => 'phone_extension_c',
'label' => 'LBL_CLICKTOCALL_PHONE_EXTENSION',
'type' => 'varchar',
'module' => 'Users',
'help' => 'Enter Your Extension',
'comment' => '',
'default_value' => '',
'max_size' => 10,
'required' => false,
'reportable' => false,
'audited' => false,
'importable' => true,
'duplicate_merge' => false
)
),
'logic_hooks' => array(
array(
'module' => '',
'hook' => 'after_ui_footer',
'order' => 99,
'description' => 'SuiteCRM Click to Call',
'file' => 'modules/ClickToCall/LoadCallerButton.php',
'class' => 'LoadCallerButton',
'function' => 'loadCallerButton'
)
)
);
$upgrade_manifest = array();