-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodule.xml
More file actions
49 lines (48 loc) · 1.81 KB
/
module.xml
File metadata and controls
49 lines (48 loc) · 1.81 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
<module>
<rawname>systemadmin</rawname>
<name>Systemadmin</name>
<version>17.0.5alpha</version>
<publisher>Generated Module</publisher>
<license>AGPLv3</license>
<changelog>
*17.0.5alpha* Add Bonding-support to networking and update packet capture
*17.0.4alpha* Add functions write_log/delete_log and update function getinterfaces
*17.0.3alpha* Fixed display error in email.php and added input vallidation for local email setup
*17.0.2alpha* Fixed error in storage.php and timezone.php
*17.0.1* Initial release
</changelog>
<category>Admin</category>
<description>OSS SystemAdmin</description>
<menuitems>
<systemadmin>Systemadmin</systemadmin>
</menuitems>
<supported>17.0</supported>
<hooks>
<framework class="Chown" namespace="FreePBX\Console\Command">
<method callingMethod="fwcChownFiles" class="Systemadmin" namespace="FreePBX\modules">chownFreepbx</method>
</framework>
</hooks>
<depends>
<file>/usr/local/freepbx</file>
</depends>
<database>
<table name="systemadmin_settings">
<field name="key" type="string" length="30"/>
<field name="value" type="text"/>
<key name="key" type="unique">
<column name="key"/>
</key>
</table>
<table name="systemadmin_logs">
<field name="id" type="integer" unsigned="true" primarykey="true" autoincrement="true"/>
<field name="username" type="string" length="50"/>
<field name="module" type="string" length="30"/>
<field name="timestamp" type="integer" unsigned="true"/>
</table>
<table name="systemadmin_packetcapture">
<field name="id" type="integer" unsigned="true" primarykey="true" autoincrement="true"/>
<field name="date" type="datetime"/>
<field name="stopped" type="string" length="3" default="no"/>
</table>
</database>
</module>