forked from ddurieux/glpi_monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
widgetPluginmap.php
57 lines (43 loc) · 1.93 KB
/
widgetPluginmap.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/*
------------------------------------------------------------------------
Plugin Monitoring for GLPI
Copyright (C) 2011-2016 by the Plugin Monitoring for GLPI Development Team.
https://forge.indepnet.net/projects/monitoring/
------------------------------------------------------------------------
LICENSE
This file is part of Plugin Monitoring project.
Plugin Monitoring for GLPI is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Plugin Monitoring for GLPI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Monitoring. If not, see <http://www.gnu.org/licenses/>.
------------------------------------------------------------------------
@package Plugin Monitoring for GLPI
@author David Durieux
@co-author
@comment
@copyright Copyright (c) 2011-2016 Plugin Monitoring for GLPI team
@license AGPL License 3.0 or (at your option) any later version
http://www.gnu.org/licenses/agpl-3.0-standalone.html
@link https://forge.indepnet.net/projects/monitoring/
@since 2014
------------------------------------------------------------------------
*/
if (strpos($_SERVER['PHP_SELF'],"widgetPluginmap.php")) {
include ("../../../inc/includes.php");
header("Content-Type: text/html; charset=UTF-8");
Html::header_nocache();
}
session_write_close();
if (!defined('GLPI_ROOT')) {
die("Can not acces directly to this file");
}
PluginMapsProfile::checkRight('mainpage','r');
PluginMapsMap::showMap();
?>