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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
<?php
/*
** Zabbix
** Copyright (C) 2000,2001,2002,2003,2004 Alexei Vladishev
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**/
?>
<?php
include "include/config.inc.php";
include "include/forms.inc.php";
$page["title"] = S_CONFIGURATION_OF_GRAPHS;
$page["file"] = "graphs.php";
show_header($page["title"],0,0);
insert_confirm_javascript();
?>
<?php
show_table_header(S_CONFIGURATION_OF_GRAPHS_BIG);
echo "<br>";
?>
<?php
if(!check_anyright("Graph","U"))
{
show_table_header("<font color=\"AA0000\">".S_NO_PERMISSIONS."</font>");
show_footer();
exit;
}
?>
<?php
if(isset($_GET["register"]))
{
if($_GET["register"]=="add")
{
$result=add_graph($_GET["name"],$_GET["width"],$_GET["height"],$_GET["yaxistype"],$_GET["yaxismin"],$_GET["yaxismax"]);
if($result)
{
add_audit(AUDIT_ACTION_ADD,AUDIT_RESOURCE_GRAPH,"Graph [".addslashes($_GET["name"])."]");
}
show_messages($result, S_GRAPH_ADDED, S_CANNOT_ADD_GRAPH);
}
if($_GET["register"]=="update")
{
$result=update_graph($_GET["graphid"],$_GET["name"],$_GET["width"],$_GET["height"],$_GET["yaxistype"],$_GET["yaxismin"],$_GET["yaxismax"]);
if($result)
{
add_audit(AUDIT_ACTION_ADD,AUDIT_RESOURCE_GRAPH,"Graph ID [".$_GET["graphid"]."] Graph [".addslashes($_GET["name"])."]");
}
show_messages($result, S_GRAPH_UPDATED, S_CANNOT_UPDATE_GRAPH);
}
if($_GET["register"]=="delete")
{
$graph=get_graph_by_graphid($_GET["graphid"]);
$result=delete_graph($_GET["graphid"]);
if($result)
{
add_audit(AUDIT_ACTION_DELETE,AUDIT_RESOURCE_GRAPH,"Graph [".addslashes($graph["name"])."]");
}
show_messages($result, S_GRAPH_DELETED, S_CANNOT_DELETE_GRAPH);
unset($_GET["graphid"]);
}
}
?>
<?php
show_table_header("GRAPHS");
table_begin();
table_header(array(S_ID,S_NAME,S_WIDTH,S_HEIGHT,S_ACTIONS));
$result=DBselect("select g.graphid,g.name,g.width,g.height from graphs g order by g.name");
$col=0;
while($row=DBfetch($result))
{
if(!check_right("Graph","U",$row["graphid"]))
{
continue;
}
table_row(array(
$row["graphid"],
"<a href=\"graph.php?graphid=".$row["graphid"]."\">".$row["name"]."</a>",
$row["width"],
$row["height"],
"<A HREF=\"graphs.php?graphid=".$row["graphid"]."#form\">Change</A>"
),$col++);
}
if(DBnum_rows($result)==0)
{
echo "<TR BGCOLOR=#EEEEEE>";
echo "<TD COLSPAN=5 ALIGN=CENTER>".S_NO_GRAPHS_DEFINED."</TD>";
echo "<TR>";
}
table_end();
?>
<?php
echo "<a name=\"form\"></a>";
insert_graph_form();
?>
<?php
show_footer();
?>
|