forked from PluginsOCSInventory-NG/winusers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.php
40 lines (33 loc) · 899 Bytes
/
install.php
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
<?php
function plugin_version_winusers()
{
return array('name' => 'winusers',
'version' => '1.1',
'author'=> 'Guillaume PRIOU, Gilles DUBOIS',
'license' => 'GPLv2',
'verMinOcs' => '2.2');
}
function plugin_init_winusers()
{
$object = new plugins;
$object -> add_cd_entry("winusers","other");
$object -> sql_query("CREATE TABLE IF NOT EXISTS `winusers` (
`ID` INT(11) NOT NULL AUTO_INCREMENT,
`HARDWARE_ID` INT(11) NOT NULL,
`NAME` VARCHAR(255) DEFAULT NULL,
`TYPE` VARCHAR(255) DEFAULT NULL,
`SIZE` VARCHAR(255) DEFAULT NULL,
`LASTLOGON` VARCHAR(255) DEFAULT NULL,
`DESCRIPTION` VARCHAR(255) DEFAULT NULL,
`STATUS` VARCHAR(255) DEFAULT NULL,
`SID` VARCHAR(255) DEFAULT NULL,
PRIMARY KEY (`ID`,`HARDWARE_ID`)
) ENGINE=InnoDB ;");
}
function plugin_delete_winusers()
{
$object = new plugins;
$object -> del_cd_entry("winusers");
$object -> sql_query("DROP TABLE `winusers`;");
}
?>