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
|
<?php
/*
** ZABBIX
** Copyright (C) 2000-2005 SIA Zabbix
**
** 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_SCREENS";
$page["file"] = "screenconf.php";
show_header($page["title"],0,0);
insert_confirm_javascript();
?>
<?php
if(!check_right("Screen","U",0))
{
show_table_header("<font color=\"AA0000\">No permissions !</font>");
show_page_footer();
exit;
}
update_profile("web.menu.config.last",$page["file"]);
?>
<?php
if(isset($_REQUEST["save"])){
if(isset($_REQUEST["screenid"]))
{
$result=update_screen($_REQUEST["screenid"],
$_REQUEST["name"],$_REQUEST["hsize"],$_REQUEST["vsize"]);
show_messages($result, S_SCREEN_UPDATED, S_CANNOT_UPDATE_SCREEN);
} else {
$result=add_screen($_REQUEST["name"],$_REQUEST["hsize"],$_REQUEST["vsize"]);
show_messages($result,S_SCREEN_ADDED,S_CANNOT_ADD_SCREEN);
}
if($result){
unset($_REQUEST["form"]);
unset($_REQUEST["screenid"]);
}
}
if(isset($_REQUEST["delete"])&&isset($_REQUEST["screenid"]))
{
$result=delete_screen($_REQUEST["screenid"]);
show_messages($result, S_SCREEN_DELETED, S_CANNOT_DELETE_SCREEN);
unset($_REQUEST["screenid"]);
}
?>
<?php
$form = new CForm("screenconf.php");
$form->AddItem(new CButton("form",S_CREATE_SCREEN));
show_header2(S_CONFIGURATION_OF_SCREENS_BIG, $form);
echo BR;
if(isset($_REQUEST["form"]))
{
insert_screen_form();
}
else
{
show_header2(S_SCREENS_BIG);
$table = new CTableInfo(S_NO_SCREENS_DEFINED);
$table->setHeader(array(S_ID,S_NAME,S_DIMENSION_COLS_ROWS,S_SCREEN));
$result=DBselect("select screenid,name,hsize,vsize from screens order by name");
while($row=DBfetch($result))
{
if(!check_right("Screen","R",$row["screenid"])) continue;
$table->addRow(array(
$row["screenid"],
new CLink($row["name"],"screenconf.php?form=update&screenid=".$row["screenid"],
'action'),
$row["hsize"]." x ".$row["vsize"],
new CLink(S_EDIT,"screenedit.php?screenid=".$row["screenid"])
));
}
$table->show();
}
?>
<?php
show_page_footer();
?>
|