forked from PluginsOCSInventory-NG/checkFiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.php
32 lines (27 loc) · 825 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
<?php
function plugin_version_checkFiles()
{
return array('name' => 'Check files',
'version' => '1.0',
'author'=> 'Valentin DEVILLE',
'license' => 'GPLv2',
'verMinOcs' => '2.2');
}
function plugin_init_checkFiles()
{
$object = new plugins;
$object -> add_cd_entry("checkFiles","other");
$object -> sql_query("CREATE TABLE IF NOT EXISTS `checkfiles` (
`ID` INT(11) NOT NULL AUTO_INCREMENT,
`HARDWARE_ID` INT(11) NOT NULL,
`PATH` TEXT DEFAULT NULL,
`EXIST` VARCHAR(255) DEFAULT NULL,
PRIMARY KEY (`ID`,`HARDWARE_ID`)
) ENGINE=INNODB;");
}
function plugin_delete_checkFiles()
{
$object = new plugins;
$object -> del_cd_entry("checkFiles");
$object -> sql_query("DROP TABLE `checkfiles`");
}