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
|
<?/*
+-------------------------------------------------------------------------+
| Copyright (C) 2002 Ian Berry |
| |
| 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. |
+-------------------------------------------------------------------------+
| cacti: the rrdtool frontend [php-auth, php-tree, php-form] |
+-------------------------------------------------------------------------+
| This code is currently maintained and debugged by Ian Berry, any |
| questions or comments regarding this code should be directed to: |
| - iberry@raxnet.net |
+-------------------------------------------------------------------------+
| - raXnet - http://www.raxnet.net/ |
+-------------------------------------------------------------------------+
*/?>
<? $section = "Add/Edit Graphs"; include ('auth/include/auth.php');
header("Cache-control: no-cache");
include ('include/database.php');
include ('include/config.php');
include_once ('include/form.php');
switch ($action) {
case 'save':
$sql_id = mysql_query("replace into def_colors (id,hex) values ($id,
\"$hex\")",$cnn_id);
header ("Location: color.php");
break;
case 'remove':
mysql_query("delete from def_colors where id=$id",$cnn_id);
header ("Location: color.php");
break;
case 'edit':
include_once ('include/top_header.php');
if ($id != "") {
$sql_id = mysql_query("select * from def_colors where id=$id", $cnn_id);
}
DrawFormHeader("rrdtool Colors Configuration","",false);
DrawFormItem("Hex Value","The hex value for this color; valid range: 000000-FFFFFF.");
DrawFormItemTextBox("hex",$sql_id,"","");
DrawFormSaveButton();
DrawFormItemHiddenIDField("id",$id);
DrawFormFooter();
include_once ("include/bottom_footer.php");
break;
default:
include_once ('include/top_header.php');
DrawMatrixTableBegin("97%");
DrawMatrixRowBegin();
DrawMatrixHeaderTop("Defined rrdtool Colors",$color_dark_bar,"","2");
DrawMatrixHeaderAdd($color_dark_bar,"","color.php?action=edit");
DrawMatrixRowEnd();
DrawMatrixRowBegin();
DrawMatrixHeaderItem("Hex Value",$color_panel,$color_panel_text);
DrawMatrixHeaderItem("Color",$color_panel,$color_panel_text);
DrawMatrixHeaderItem("",$color_panel,$color_panel_text);
DrawMatrixRowEnd();
$sql_id = mysql_query("select * from def_colors order by hex", $cnn_id);
$rows = mysql_num_rows($sql_id); $i = 0;
while ($i < $rows) {
DrawMatrixRowAlternateColorBegin($color_alternate,$color_light,$i);
DrawMatrixLoopItem($sql_id,"hex",$i,html_boolean($config["vis_main_column_bold"]["value"]),"color.php?action=edit&id=" . mysql_result($sql_id, $i, "id"));
DrawMatrixCustom("<td bgcolor=\"#" . mysql_result($sql_id, $i, "hex") . "\" width=\"1%\"> </td>");
DrawMatrixLoopItemAction("Remove",$color_panel,"",false,"color.php?action=remove&id=" . mysql_result($sql_id, $i, "id"));
DrawMatrixRowEnd();
$i++;
}
DrawMatrixTableEnd();
include_once ("include/bottom_footer.php");
break;
} ?>
|