-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmodule.xml
51 lines (51 loc) · 1.87 KB
/
module.xml
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
<module>
<rawname>languages</rawname>
<repo>extended</repo>
<name>Languages</name>
<version>17.0.1</version>
<publisher>Sangoma Technologies Corporation</publisher>
<license>GPLv3+</license>
<licenselink>https://www.gnu.org/licenses/gpl-3.0.txt</licenselink>
<category>Applications</category>
<description>
Adds the ability to changes the language within a call flow and add language attribute to users.
</description>
<more-info>https://sangomakb.atlassian.net/wiki/spaces/PG/pages/24576061/Languages+Module</more-info>
<menuitems>
<languages needsenginedb="yes">Languages</languages>
</menuitems>
<popovers>
<languages>
<display>languages</display>
</languages>
</popovers>
<changelog>
*17.0.1* release 17
</changelog>
<hooks>
<bulkhandler class="Bulkhandler" namespace="FreePBX\modules">
<method callingMethod="getHeaders" class="Languages" namespace="FreePBX\modules">bulkhandlerGetHeaders</method>
<method callingMethod="export" class="Languages" namespace="FreePBX\modules">bulkhandlerExport</method>
<method callingMethod="import" class="Languages" namespace="FreePBX\modules">bulkhandlerImport</method>
</bulkhandler>
</hooks>
<database>
<table name="languages">
<field name="language_id" type="integer" primaryKey="true" autoincrement="true"/>
<field name="lang_code" type="string" length="50" notnull="false"/>
<field name="description" type="string" length="50" notnull="false"/>
<field name="dest" type="string" length="255" notnull="false"/>
</table>
<table name="language_incoming">
<field name="extension" type="string" length="50" notnull="false"/>
<field name="cidnum" type="string" length="50" notnull="false"/>
<field name="language" type="string" length="10" notnull="false"/>
</table>
</database>
<depends>
<version>17.0</version>
</depends>
<supported>
<version>17.0</version>
</supported>
</module>