ryxeo-glpi-git / inc / alert.class.php @ b67d8923
Historique | Voir | Annoter | Télécharger (2,58 ko)
1 |
<?php
|
---|---|
2 |
/*
|
3 |
* @version $Id: alert.class.php 7882 2009-01-23 18:24:05Z moyo $
|
4 |
-------------------------------------------------------------------------
|
5 |
GLPI - Gestionnaire Libre de Parc Informatique
|
6 |
Copyright (C) 2003-2009 by the INDEPNET Development Team.
|
7 |
|
8 |
http://indepnet.net/ http://glpi-project.org
|
9 |
-------------------------------------------------------------------------
|
10 |
|
11 |
LICENSE
|
12 |
|
13 |
This file is part of GLPI.
|
14 |
|
15 |
GLPI is free software; you can redistribute it and/or modify
|
16 |
it under the terms of the GNU General Public License as published by
|
17 |
the Free Software Foundation; either version 2 of the License, or
|
18 |
(at your option) any later version.
|
19 |
|
20 |
GLPI is distributed in the hope that it will be useful,
|
21 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23 |
GNU General Public License for more details.
|
24 |
|
25 |
You should have received a copy of the GNU General Public License
|
26 |
along with GLPI; if not, write to the Free Software
|
27 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
--------------------------------------------------------------------------
|
29 |
*/
|
30 |
|
31 |
// ----------------------------------------------------------------------
|
32 |
// Original Author of file:
|
33 |
// Purpose of file:
|
34 |
// ----------------------------------------------------------------------
|
35 |
|
36 |
if (!defined('GLPI_ROOT')){ |
37 |
die("Sorry. You can't access directly to this file"); |
38 |
} |
39 |
|
40 |
/// Alert class
|
41 |
class Alert extends CommonDBTM { |
42 |
|
43 |
/**
|
44 |
* Constructor
|
45 |
**/
|
46 |
function Alert () { |
47 |
$this->table="glpi_alerts"; |
48 |
$this->type=0; |
49 |
} |
50 |
/**
|
51 |
* Retrieve an item from the database
|
52 |
*
|
53 |
*@param $ID ID of the item to get
|
54 |
*@param $type ID of the type to get
|
55 |
*@return true if succeed else false
|
56 |
*
|
57 |
**/
|
58 |
function getFromDBForDevice ($type,$ID) { |
59 |
|
60 |
// Make new database object and fill variables
|
61 |
global $DB; |
62 |
if (empty($ID)) return false; |
63 |
|
64 |
$query = "SELECT * FROM `".$this->table."` WHERE (device_type='$type' AND FK_device = '$ID')"; |
65 |
|
66 |
if ($result = $DB->query($query)) { |
67 |
if ($DB->numrows($result)==1){ |
68 |
$this->fields = $DB->fetch_assoc($result); |
69 |
return true; |
70 |
} else return false; |
71 |
} else {
|
72 |
return false; |
73 |
} |
74 |
} |
75 |
/**
|
76 |
* Clear all alerts of an alert type for an item
|
77 |
*
|
78 |
*@param $ID ID of the item to clear
|
79 |
*@param $device_type ID of the type to clear
|
80 |
*@param $alert_type ID of the alert type to clear
|
81 |
*@return nothing
|
82 |
*
|
83 |
**/
|
84 |
function clear($device_type,$ID,$alert_type){ |
85 |
global $DB; |
86 |
|
87 |
$query="DELETE FROM `".$this->table."` WHERE (device_type='$device_type' AND FK_device = '$ID' AND type='$alert_type')"; |
88 |
$DB->query($query); |
89 |
} |
90 |
|
91 |
} |
92 |
|
93 |
?>
|