-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmodule.xml
More file actions
149 lines (148 loc) · 7.73 KB
/
module.xml
File metadata and controls
149 lines (148 loc) · 7.73 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<module>
<rawname>contactmanager</rawname>
<repo>standard</repo>
<name>Contact Manager</name>
<version>17.0.6.2</version>
<publisher>Sangoma Technologies Corporation</publisher>
<license>GPLv3+</license>
<licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink>
<changelog>
*17.0.6.2* FREEI-2619 Unable to create Favorites contacts
*17.0.6.1* issue-674 special characters allowed for contact creation
*17.0.6* FREEI-2061 - Fixing XSS issue in UCP Group
*17.0.5.17* FREEI-2118 undefined variable favoriteList
*17.0.5.16 FREEI-2080 Favorite contacts restore issue
*17.0.5.15 #656 Increasing email field length
*17.0.5.14 bump
*17.0.5.13* FREEI-1619 Sangoma Desktop Softphone Contacts not being Displayed
*17.0.5.11 bump
*17.0.1* 17.0.1 alpha release
</changelog>
<category>Admin</category>
<description>
The Contact Manager module lets you add contacts to groups.
</description>
<more-info>https://sangomakb.atlassian.net/wiki/spaces/PG/pages/20023898/Contact+Manager+Module</more-info>
<menuitems>
<contactmanager needsenginedb="yes">Contact Manager</contactmanager>
</menuitems>
<depends>
<version>17.0.1</version>
<module>userman ge 17.0.1</module>
</depends>
<supported>
<version>17.0</version>
</supported>
<hooks>
<bulkhandler class="Bulkhandler" namespace="FreePBX\modules">
<method callingMethod="getHeaders" class="Contactmanager" namespace="FreePBX\modules">bulkhandlerGetHeaders</method>
<method callingMethod="getTypes" class="Contactmanager" namespace="FreePBX\modules">bulkhandlerGetTypes</method>
<method callingMethod="import" class="Contactmanager" namespace="FreePBX\modules">bulkhandlerImport</method>
<method callingMethod="export" class="Contactmanager" namespace="FreePBX\modules">bulkhandlerExport</method>
</bulkhandler>
<userman class="Userman" namespace="FreePBX\modules">
<method callingMethod="delGroup" class="Contactmanager" namespace="FreePBX\modules">usermanDelGroup</method>
<method callingMethod="addGroup" class="Contactmanager" namespace="FreePBX\modules">usermanAddGroup</method>
<method callingMethod="updateGroup" class="Contactmanager" namespace="FreePBX\modules">usermanUpdateGroup</method>
<method callingMethod="delUser" class="Contactmanager" namespace="FreePBX\modules">usermanDelUser</method>
<method callingMethod="addUser" class="Contactmanager" namespace="FreePBX\modules">usermanAddUser</method>
<method callingMethod="updateUser" class="Contactmanager" namespace="FreePBX\modules">usermanUpdateUser</method>
<method callingMethod="myShowPage" class="Contactmanager" namespace="FreePBX\modules">usermanShowPage</method>
<method callingMethod="getExtraUserDetailsDisplay" class="Contactmanager" namespace="FreePBX\modules">usermanUserDetails</method>
<method callingMethod="getExtraContactInfo" class="Contactmanager" namespace="FreePBX\modules">usermanAddContactInfo</method>
</userman>
<ucp class="Ucp">
<method callingMethod="constructModuleConfigPages" class="Contactmanager" namespace="FreePBX\modules">ucpConfigPage</method>
<method callingMethod="addUser" class="Contactmanager" namespace="FreePBX\modules">ucpAddUser</method>
<method callingMethod="updateUser" class="Contactmanager" namespace="FreePBX\modules">ucpUpdateUser</method>
<method callingMethod="delUser" class="Contactmanager" namespace="FreePBX\modules">ucpDelUser</method>
<method callingMethod="addGroup" class="Contactmanager" namespace="FreePBX\modules">ucpAddGroup</method>
<method callingMethod="updateGroup" class="Contactmanager" namespace="FreePBX\modules">ucpUpdateGroup</method>
<method callingMethod="delGroup" class="Contactmanager" namespace="FreePBX\modules">ucpDelGroup</method>
</ucp>
</hooks>
<database>
<table name="contactmanager_groups">
<field name="id" type="integer" primaryKey="true" autoincrement="true"/>
<field name="owner" type="integer"/>
<field name="name" type="string" length="80"/>
<field name="type" type="string" length="25"/>
</table>
<table name="contactmanager_group_entries">
<field name="id" type="integer" primarykey="true" autoincrement="true"/>
<field name="groupid" type="integer"/>
<field name="user" type="integer"/>
<field name="displayname" type="string" length="100" default=""/>
<field name="fname" type="string" length="100" default=""/>
<field name="lname" type="string" length="100" default=""/>
<field name="title" type="string" length="100" default=""/>
<field name="company" type="string" length="100" default=""/>
<field name="address" type="string" length="200" default=""/>
<field name="uuid" type="string" length="36" notnull="false"/>
<key name="uuid_index" type="unique">
<column name="uuid"/>
</key>
</table>
<table name="contactmanager_entry_speeddials">
<field name="id" type="string" length="5" primaryKey="true"/>
<field name="entryid" type="integer"/>
<field name="numberid" type="integer"/>
</table>
<table name="contactmanager_entry_numbers">
<field name="id" type="integer" primaryKey="true" autoincrement="true"/>
<field name="entryid" type="integer"/>
<field name="number" type="string" length="100" notnull="false"/>
<field name="extension" type="string" length="100" notnull="false"/>
<field name="countrycode" type="string" length="4" notnull="false"/>
<field name="nationalnumber" type="string" length="100" notnull="false"/>
<field name="regioncode" type="string" length="2" notnull="false"/>
<field name="locale" type="string" length="2" notnull="false"/>
<field name="stripped" type="string" length="100" notnull="false"/>
<field name="type" type="string" length="100" notnull="false"/>
<field name="flags" type="string" length="100" notnull="false"/>
<field name="E164" type="string" length="100" notnull="false"/>
<field name="possibleshort" type="boolean" notnull="false"/>
</table>
<table name="contactmanager_entry_images">
<field name="entryid" type="integer" primaryKey="true"/>
<field name="image" type="blob" notnull="false"/>
<field name="format" type="string" length="45"/>
<field name="gravatar" type="boolean" default="0"/>
</table>
<table name="contactmanager_entry_userman_images">
<field name="uid" type="integer" primaryKey="true"/>
<field name="image" type="blob" notnull="false"/>
<field name="format" type="string" length="45"/>
<field name="gravatar" type="boolean" default="0"/>
</table>
<table name="contactmanager_entry_xmpps">
<field name="id" type="integer" primaryKey="true" autoincrement="true"/>
<field name="entryid" type="integer"/>
<field name="xmpp" type="string" length="100" notnull="false"/>
</table>
<table name="contactmanager_entry_emails">
<field name="id" type="integer" primaryKey="true" autoincrement="true"/>
<field name="entryid" type="integer"/>
<field name="email" type="string" length="500" notnull="false"/>
</table>
<table name="contactmanager_entry_websites">
<field name="id" type="integer" primaryKey="true" autoincrement="true"/>
<field name="entryid" type="integer"/>
<field name="website" type="string" length="100" notnull="false"/>
</table>
<table name="contactmanager_general_favorites">
<field name="id" type="integer" primaryKey="true" autoincrement="true"/>
<field name="list_name" type="string" length="100" notnull="true"/>
<field name="contact_ids" type="blob"/>
</table>
<table name="contactmanager_user_favorites">
<field name="uid" type="integer"/>
<field name="contact_ids" type="blob"/>
</table>
</database>
<console>
<command>
<name>contactmanager</name>
</command>
</console>
</module>