-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmodule.xml
More file actions
59 lines (59 loc) · 2.65 KB
/
Copy pathmodule.xml
File metadata and controls
59 lines (59 loc) · 2.65 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
<module>
<rawname>conferences</rawname>
<repo>standard</repo>
<name>Conferences</name>
<version>17.0.3.2</version>
<publisher>Sangoma Technologies Corporation</publisher>
<license>GPLv3+</license>
<licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink>
<category>Applications</category>
<description>Allow creation of conference rooms where multiple people can talk together</description>
<more-info>https://sangomakb.atlassian.net/wiki/spaces/PG/pages/22511822/Conferences+Module</more-info>
<changelog>
*17.0.3.2* bump
*17.0.2* Packaging of ver 17.0.2
*17.0.1alpha* 17.0.1 alpha release
</changelog>
<depends>
<module>recordings ge 17.0.1</module>
<version>17.0.1</version>
</depends>
<menuitems>
<conferences needsenginedb="yes">Conferences</conferences>
</menuitems>
<popovers>
<conferences>
<display>conferences</display>
<view>form</view>
</conferences>
</popovers>
<database>
<table name="meetme">
<field name="exten" type="string" length="50" primarykey="true"/>
<field name="options" type="string" length="15" notnull="false"/>
<field name="userpin" type="string" length="50" notnull="false"/>
<field name="adminpin" type="string" length="50" notnull="false"/>
<field name="description" type="string" length="50" notnull="false"/>
<field name="joinmsg_id" type="integer" notnull="false"/>
<field name="music" type="string" length="80" notnull="false"/>
<field name="users" type="smallint" default="0" unsigned="true" notnull="false"/>
<field name="language" type="string" length="10" default=""/>
<field name="timeout" type="integer" default="21600" unsigned="true" notnull="false"/>
</table>
</database>
<hooks>
<bulkhandler class="Bulkhandler" namespace="FreePBX\modules">
<method callingMethod="getHeaders" class="Conferences" namespace="FreePBX\modules">bulkhandlerGetHeaders</method>
<method callingMethod="getTypes" class="Conferences">bulkhandlerGetTypes</method>
<method callingMethod="validate" class="Conferences" namespace="FreePBX\modules">bulkhandlerValidate</method>
<method callingMethod="import" class="Conferences" namespace="FreePBX\modules">bulkhandlerImport</method>
<method callingMethod="export" class="Conferences" namespace="FreePBX\modules">bulkhandlerExport</method>
</bulkhandler>
<printextensions class="Printextensions" namespace="FreePBX\modules">
<method callingMethod="getSections" class="Conferences" namespace="FreePBX\modules">printExtensions</method>
</printextensions>
</hooks>
<supported>
<version>17.0</version>
</supported>
</module>