"Delete", 2 => "Change Data Template", 3 => "Change Host", 4 => "Duplicate", 5 => "Convert to Data Template" ); /* set default action */ if (!isset($_REQUEST["action"])) { $_REQUEST["action"] = ""; } switch ($_REQUEST["action"]) { case 'save': form_save(); break; case 'actions': form_actions(); break; case 'rrd_add': ds_rrd_add(); break; case 'rrd_remove': ds_rrd_remove(); break; case 'data_edit': include_once("./include/top_header.php"); data_edit(); include_once("./include/bottom_footer.php"); break; case 'ds_remove': ds_remove(); header ("Location: data_sources.php"); break; case 'ds_edit': include_once("./include/top_header.php"); ds_edit(); include_once("./include/bottom_footer.php"); break; default: include_once("./include/top_header.php"); ds(); include_once("./include/bottom_footer.php"); break; } /* -------------------------- The Save Function -------------------------- */ function form_save() { if ((isset($_POST["save_component_data_source_new"])) && (!empty($_POST["data_template_id"]))) { $save["id"] = $_POST["local_data_id"]; $save["data_template_id"] = $_POST["data_template_id"]; $save["host_id"] = $_POST["host_id"]; $local_data_id = sql_save($save, "data_local"); change_data_template($local_data_id, $_POST["data_template_id"]); /* update the title cache */ update_data_source_title_cache($local_data_id); /* update host data */ if (!empty($_POST["host_id"])) { push_out_host($_POST["host_id"], $local_data_id); } } if ((isset($_POST["save_component_data"])) && (!is_error_message())) { /* ok, first pull out all 'input' values so we know how much to save */ $input_fields = db_fetch_assoc("select data_template_data.data_input_id, data_local.host_id, data_input_fields.id, data_input_fields.input_output, data_input_fields.data_name, data_input_fields.regexp_match, data_input_fields.allow_nulls, data_input_fields.type_code from data_template_data left join data_input_fields on data_input_fields.data_input_id=data_template_data.data_input_id left join data_local on data_template_data.local_data_id=data_local.id where data_template_data.id=" . $_POST["data_template_data_id"] . " and data_input_fields.input_output='in'"); if (sizeof($input_fields) > 0) { foreach ($input_fields as $input_field) { if (isset($_POST{"value_" . $input_field["id"]})) { /* save the data into the 'data_input_data' table */ $form_value = $_POST{"value_" . $input_field["id"]}; /* we shouldn't enforce rules on fields the user cannot see (ie. templated ones) */ $is_templated = db_fetch_cell("select t_value from data_input_data where data_input_field_id=" . $input_field["id"] . " and data_template_data_id=" . db_fetch_cell("select local_data_template_data_id from data_template_data where id=" . $_POST["data_template_data_id"])); if ($is_templated == "") { $allow_nulls = true; }elseif ($input_field["allow_nulls"] == "on") { $allow_nulls = true; }elseif (empty($input_field["allow_nulls"])) { $allow_nulls = false; } /* run regexp match on input string */ $form_value = form_input_validate($form_value, "value_" . $input_field["id"], $input_field["regexp_match"], $allow_nulls, 3); if (!is_error_message()) { db_execute("replace into data_input_data (data_input_field_id,data_template_data_id,t_value,value) values (" . $input_field["id"] . "," . $_POST["data_template_data_id"] . ",'','$form_value')"); } } } } } if (isset($_POST["save_component_data_source"])) { $save1["id"] = $_POST["local_data_id"]; $save1["data_template_id"] = $_POST["data_template_id"]; $save1["host_id"] = $_POST["host_id"]; $save2["id"] = $_POST["data_template_data_id"]; $save2["local_data_template_data_id"] = $_POST["local_data_template_data_id"]; $save2["data_template_id"] = $_POST["data_template_id"]; $save2["data_input_id"] = form_input_validate($_POST["data_input_id"], "data_input_id", "", true, 3); $save2["name"] = form_input_validate($_POST["name"], "name", "", false, 3); $save2["data_source_path"] = form_input_validate($_POST["data_source_path"], "data_source_path", "", true, 3); $save2["active"] = form_input_validate((isset($_POST["active"]) ? $_POST["active"] : ""), "active", "", true, 3); $save2["rrd_step"] = form_input_validate($_POST["rrd_step"], "rrd_step", "^[0-9]+$", false, 3); if (!is_error_message()) { $local_data_id = sql_save($save1, "data_local"); $save2["local_data_id"] = $local_data_id; $data_template_data_id = sql_save($save2, "data_template_data"); if ($data_template_data_id) { raise_message(1); }else{ raise_message(2); } } /* if this is a new data source and a template has been selected, skip item creation this time otherwise it throws off the templatate creation because of the NULL data */ if ((!empty($_POST["local_data_id"])) || (empty($_POST["data_template_id"])) && (!is_error_message())) { /* if no template was set before the save, there will be only one data source item to save; otherwise there might be >1 */ if (empty($_POST["_data_template_id"])) { $rrds[0]["id"] = $_POST["current_rrd"]; }else{ $rrds = db_fetch_assoc("select id from data_template_rrd where local_data_id=" . $_POST["local_data_id"]); } if (sizeof($rrds) > 0) { foreach ($rrds as $rrd) { if (empty($_POST["_data_template_id"])) { $name_modifier = ""; }else{ $name_modifier = "_" . $rrd["id"]; } $save3["id"] = $rrd["id"]; $save3["local_data_id"] = $local_data_id; $save3["local_data_template_rrd_id"] = db_fetch_cell("select local_data_template_rrd_id from data_template_rrd where id=" . $rrd["id"]); $save3["data_template_id"] = $_POST["data_template_id"]; $save3["rrd_maximum"] = form_input_validate($_POST["rrd_maximum$name_modifier"], "rrd_maximum$name_modifier", "^-?[0-9]+$", false, 3); $save3["rrd_minimum"] = form_input_validate($_POST["rrd_minimum$name_modifier"], "rrd_minimum$name_modifier", "^-?[0-9]+$", false, 3); $save3["rrd_heartbeat"] = form_input_validate($_POST["rrd_heartbeat$name_modifier"], "rrd_heartbeat$name_modifier", "^[0-9]+$", false, 3); $save3["data_source_type_id"] = $_POST["data_source_type_id$name_modifier"]; $save3["data_source_name"] = form_input_validate($_POST["data_source_name$name_modifier"], "data_source_name$name_modifier", "^[a-zA-Z0-9_-]{1,19}$", false, 3); $save3["data_input_field_id"] = form_input_validate((isset($_POST["data_input_field_id$name_modifier"]) ? $_POST["data_input_field_id$name_modifier"] : "0"), "data_input_field_id$name_modifier", "", true, 3); $data_template_rrd_id = sql_save($save3, "data_template_rrd"); if ($data_template_rrd_id) { raise_message(1); }else{ raise_message(2); } } } } if (!is_error_message()) { if (!empty($_POST["rra_id"])) { /* save entries in 'selected rras' field */ db_execute("delete from data_template_data_rra where data_template_data_id=$data_template_data_id"); for ($i=0; ($i < count($_POST["rra_id"])); $i++) { db_execute("insert into data_template_data_rra (rra_id,data_template_data_id) values (" . $_POST["rra_id"][$i] . ",$data_template_data_id)"); } } if ($_POST["data_template_id"] != $_POST["_data_template_id"]) { /* update all necessary template information */ change_data_template($local_data_id, $_POST["data_template_id"]); }elseif (!empty($_POST["data_template_id"])) { update_data_source_snmp_query_cache($local_data_id); } if ($_POST["host_id"] != $_POST["_host_id"]) { /* push out all necessary host information */ push_out_host($_POST["host_id"], $local_data_id); /* reset current host for display purposes */ $_SESSION["sess_data_source_current_host_id"] = $_POST["host_id"]; } /* if no data source path has been entered, generate one */ if (empty($_POST["data_source_path"])) { generate_data_source_path($local_data_id); } /* update the title cache */ update_data_source_title_cache($local_data_id); } } /* update the poller cache last to make sure everything is fresh */ if ((!is_error_message()) && (!empty($local_data_id))) { update_poller_cache($local_data_id); } if ((isset($_POST["save_component_data_source_new"])) && (empty($_POST["data_template_id"]))) { header("Location: data_sources.php?action=ds_edit&host_id=" . $_POST["host_id"] . "&new=1"); }elseif ((is_error_message()) || ($_POST["data_template_id"] != $_POST["_data_template_id"]) || ($_POST["data_input_id"] != $_POST["_data_input_id"]) || ($_POST["host_id"] != $_POST["_host_id"])) { header("Location: data_sources.php?action=ds_edit&id=" . (empty($local_data_id) ? $_POST["local_data_id"] : $local_data_id) . "&host_id=" . $_POST["host_id"] . "&view_rrd=" . (isset($_POST["current_rrd"]) ? $_POST["current_rrd"] : "0")); }else{ header("Location: data_sources.php"); } } /* ------------------------ The "actions" function ------------------------ */ function form_actions() { global $colors, $ds_actions; /* if we are to save this form, instead of display it */ if (isset($_POST["selected_items"])) { $selected_items = unserialize(stripslashes($_POST["selected_items"])); if ($_POST["drp_action"] == "1") { /* delete */ if (!isset($_POST["delete_type"])) { $_POST["delete_type"] = 0; } switch ($_POST["delete_type"]) { case '2': /* delete all graph items tied to this data source */ $data_template_rrds = db_fetch_assoc("select id from data_template_rrd where " . array_to_sql_or($selected_items, "local_data_id")); /* loop through each data source item */ if (sizeof($data_template_rrds) > 0) { foreach ($data_template_rrds as $item) { db_execute("delete from graph_templates_item where task_item_id=" . $item["id"] . " and local_graph_id > 0"); } } break; case '3': /* delete all graphs tied to this data source */ $data_template_rrds = db_fetch_assoc("select id from data_template_rrd where " . array_to_sql_or($selected_items, "local_data_id")); /* loop through each data source item */ if (sizeof($data_template_rrds) > 0) { foreach ($data_template_rrds as $item) { $graphs = db_fetch_assoc("select local_graph_id from graph_templates_item where task_item_id=" . $item["id"] . " and local_graph_id > 0"); /* loop through each graph */ if (sizeof($graphs) > 0) { foreach ($graphs as $graph) { db_execute("delete from graph_templates_graph where local_graph_id=" . $graph["local_graph_id"]); db_execute("delete from graph_templates_item where local_graph_id=" . $graph["local_graph_id"]); db_execute("delete from graph_tree_items where local_graph_id=" . $graph["local_graph_id"]); db_execute("delete from graph_local where id=" . $graph["local_graph_id"]); } } } } break; } /* retrieve an array indexed on data_template_data_id */ $data_template_data_ids = db_fetch_assoc("select id from data_template_data where " . array_to_sql_or($selected_items, "local_data_id")); $selected_dsid_items = array(); for ($i=0;($i data template */ for ($i=0;($i"; $ds_array[$i] = $matches[1]; } $i++; } include_once("./include/top_header.php"); start_box("" . $ds_actions{$_POST["drp_action"]} . "", "60%", $colors["header_panel"], "3", "center", ""); print "
\n"; if ($_POST["drp_action"] == "1") { /* delete */ $graphs = array(); /* find out what (if any) graphs are using this data source, so we can complain to the user */ if (isset($ds_array)) { $graphs = db_fetch_assoc("select graph_templates_graph.local_graph_id, graph_templates_graph.title_cache from data_template_rrd left join graph_templates_item on graph_templates_item.task_item_id=data_template_rrd.id left join graph_templates_graph on graph_templates_item.local_graph_id=graph_templates_graph.local_graph_id where " . array_to_sql_or($ds_array, "data_template_rrd.local_data_id") . " and graph_templates_item.local_graph_id>0 and graph_templates_graph.local_graph_id>0 group by graph_templates_graph.title order by graph_templates_graph.title"); } print "

Are you sure you want to delete the following data sources?

$ds_list

"; if (sizeof($graphs) > 0) { print "

The following graphs are using this data source:

\n"; foreach ($graphs as $graph) { print "" . $graph["title_cache"] . "
\n"; } print "
"; form_radio_button("delete_type", "1", "1", "Leave the graphs untouched.", "1"); print "
"; form_radio_button("delete_type", "1", "2", "Delete all graph items that reference to this data source.", "1"); print "
"; form_radio_button("delete_type", "1", "3", "Delete all graphs that reference to this data source.", "1"); print "
"; print ""; } print " \n "; }elseif ($_POST["drp_action"] == "2") { /* change graph template */ print "

Choose a data template and click save to change the data template for the following data souces. Be aware that all warnings will be suppressed during the conversion, so graph data loss is possible.

$ds_list

New Data Template:
"; form_dropdown("data_template_id",db_fetch_assoc("select data_template.id,data_template.name from data_template order by data_template.name"),"name","id","","","0"); print "

\n "; }elseif ($_POST["drp_action"] == "3") { /* change host */ print "

Choose a new host for these data sources:

$ds_list

New Host:
"; form_dropdown("host_id",db_fetch_assoc("select id,CONCAT_WS('',description,' (',hostname,')') as name from host order by description,hostname"),"name","id","","","0"); print "

\n "; }elseif ($_POST["drp_action"] == "4") { /* duplicate */ print "

When you click save, the following data sources will be duplicated. You can optionally change the title format for the new data sources.

$ds_list

Title Format:
"; form_text_box("title_format", " (1)", "", "255", "30", "text"); print "

\n "; }elseif ($_POST["drp_action"] == "5") { /* graph -> graph template */ print "

When you click save, the following data sources will be converted into data templates. You can optionally change the title format for the new data templates.

$ds_list

Title Format:
"; form_text_box("title_format", " Template", "", "255", "30", "text"); print "

\n "; } if (!isset($ds_array)) { print "You must select at least one data source.\n"; $save_html = ""; }else{ $save_html = ""; } print " Cancel $save_html "; end_box(); include_once("./include/bottom_footer.php"); } /* ---------------------------- data - Custom Data ---------------------------- */ function data_edit() { global $config, $colors; if (!empty($_GET["id"])) { $data = db_fetch_row("select id,data_input_id,data_template_id,name,local_data_id from data_template_data where local_data_id=" . $_GET["id"]); $template_data = db_fetch_row("select id,data_input_id from data_template_data where data_template_id=" . $data["data_template_id"] . " and local_data_id=0"); $host = db_fetch_row("select host.id,host.hostname from data_local,host where data_local.host_id=host.id and data_local.id=" . $_GET["id"]); $header_label = "[edit: " . $data["name"] . "]"; }else{ $header_label = "[new]"; } print "\n"; $i = 0; if (!empty($data["data_input_id"])) { /* get each INPUT field for this data input source */ $fields = db_fetch_assoc("select * from data_input_fields where data_input_id=" . $data["data_input_id"] . " and input_output='in' order by name"); start_box("Custom Data [data input: " . db_fetch_cell("select name from data_input where id=" . $data["data_input_id"]) . "]", "98%", $colors["header"], "3", "center", ""); /* loop through each field found */ if (sizeof($fields) > 0) { foreach ($fields as $field) { $data_input_data = db_fetch_row("select * from data_input_data where data_template_data_id=" . $data["id"] . " and data_input_field_id=" . $field["id"]); if (sizeof($data_input_data) > 0) { $old_value = $data_input_data["value"]; }else{ $old_value = ""; } /* if data template then get t_value from template, else always allow user input */ if (empty($data["data_template_id"])) { $can_template = "on"; }else{ $can_template = db_fetch_cell("select t_value from data_input_data where data_template_data_id=" . $template_data["id"] . " and data_input_field_id=" . $field["id"]); } form_alternate_row_color($colors["form_alternate1"],$colors["form_alternate2"],$i); if ((!empty($host["id"])) && (eregi('^(hostname|snmp_community|snmp_username|snmp_password|snmp_version)$', $field["type_code"]))) { print "" . $field["name"] . " (From Host: " . $host["hostname"] . ")\n"; print "$old_value\n"; }elseif (empty($can_template)) { print "" . $field["name"] . " (From Data Template)\n"; print "" . (empty($old_value) ? "Nothing Entered" : $old_value) . "\n"; }else{ print "" . $field["name"] . "\n"; print ""; draw_custom_data_row("value_" . $field["id"], $field["id"], $data["id"], $old_value); print ""; } print "\n"; $i++; } }else{ print "No Input Fields for the Selected Data Input Source"; } end_box(); } form_hidden_id("local_data_id",(isset($data) ? $data["local_data_id"] : "0")); form_hidden_id("data_template_data_id",(isset($data) ? $data["id"] : "0")); form_hidden_box("save_component_data","1",""); } /* ------------------------ Data Source Functions ------------------------ */ function ds_rrd_remove() { db_execute("delete from data_template_rrd where id=" . $_GET["id"]); db_execute("update graph_templates_item set task_item_id=0 where task_item_id=" . $_GET["id"]); header("Location: data_sources.php?action=ds_edit&id=" . $_GET["local_data_id"]); } function ds_rrd_add() { db_execute("insert into data_template_rrd (local_data_id,rrd_maximum,rrd_minimum,rrd_heartbeat,data_source_type_id, data_source_name) values (" . $_GET["id"] . ",100,0,600,1,'ds')"); $data_template_rrd_id = db_fetch_insert_id(); header("Location: data_sources.php?action=ds_edit&id=" . $_GET["id"] . "&view_rrd=$data_template_rrd_id"); } function ds_edit() { global $colors, $struct_data_source, $struct_data_source_item, $data_source_types; $use_data_template = true; $host_id = 0; if (!empty($_GET["id"])) { $local_data_template_data_id = db_fetch_cell("select local_data_template_data_id from data_template_data where local_data_id=" . $_GET["id"]); $data = db_fetch_row("select * from data_template_data where local_data_id=" . $_GET["id"]); $data_template = db_fetch_row("select * from data_template_data where id=$local_data_template_data_id"); $host_id = db_fetch_cell("select host_id from data_local where id=" . $_GET["id"]); $data_template_name = db_fetch_cell("select name from data_template where id=" . $data["data_template_id"]); $header_label = "[edit: " . get_data_source_title($_GET["id"]) . "]"; if ($data["data_template_id"] == "0") { $use_data_template = false; } }else{ $header_label = "[new]"; $use_data_template = false; } /* handle debug mode */ if (isset($_GET["debug"])) { if ($_GET["debug"] == "0") { kill_session_var("ds_debug_mode"); }elseif ($_GET["debug"] == "1") { $_SESSION["ds_debug_mode"] = true; } } if (!empty($_GET["id"])) { ?>
*Turn Data Source Debug Mode.

Data Template Selection $header_label", "98%", $colors["header"], "3", "center", ""); $form_array = array( "data_template_id" => array( "method" => "drop_sql", "friendly_name" => "Selected Data Template", "description" => "The name given to this data template.", "value" => (isset($data_template) ? $data_template["data_template_id"] : "0"), "none_value" => "None", "sql" => "select id,name from data_template order by name" ), "host_id" => array( "method" => "drop_sql", "friendly_name" => "Host", "description" => "Choose the host that this graph belongs to.", "value" => (isset($_GET["host_id"]) ? $_GET["host_id"] : $host_id), "none_value" => "None", "sql" => "select id,CONCAT_WS('',description,' (',hostname,')') as name from host order by description,hostname" ), "_data_template_id" => array( "method" => "hidden", "value" => (isset($data) ? $data["data_template_id"] : "0") ), "_host_id" => array( "method" => "hidden", "value" => (empty($host_id) ? (isset($_GET["host_id"]) ? $_GET["host_id"] : "0") : $host_id) ), "_data_input_id" => array( "method" => "hidden", "value" => (isset($data["data_input_id"]) ? $data["data_input_id"] : "0") ), "data_template_data_id" => array( "method" => "hidden", "value" => (isset($data) ? $data["id"] : "0") ), "local_data_template_data_id" => array( "method" => "hidden", "value" => (isset($data) ? $data["local_data_template_data_id"] : "0") ), "local_data_id" => array( "method" => "hidden", "value" => (isset($data) ? $data["local_data_id"] : "0") ), ); draw_edit_form( array( "config" => array(), "fields" => $form_array ) ); end_box(); /* only display the "inputs" area if we are using a data template for this data source */ if (!empty($data["data_template_id"])) { $template_data_rrds = db_fetch_assoc("select * from data_template_rrd where local_data_id=" . $_GET["id"] . " order by data_source_name"); start_box("Supplemental Data Template Data", "98%", $colors["header"], "3", "center", ""); draw_nontemplated_fields_data_source($data["data_template_id"], $data["local_data_id"], $data, "|field|", "Data Source Fields", true, true, 0); draw_nontemplated_fields_data_source_item($data["data_template_id"], $template_data_rrds, "|field|_|id|", "Data Source Item Fields", true, true, true, 0); draw_nontemplated_fields_custom_data($data["id"], "value_|id|", "Custom Data", true, true, 0); form_hidden_box("save_component_data","1",""); end_box(); } if (((isset($_GET["id"])) || (isset($_GET["new"]))) && (empty($data["data_template_id"]))) { start_box("Data Source", "98%", $colors["header"], "3", "center", ""); $form_array = array(); while (list($field_name, $field_array) = each($struct_data_source)) { $form_array += array($field_name => $struct_data_source[$field_name]); if (!(($use_data_template == false) || (!empty($data_template{"t_" . $field_name})) || ($field_array["flags"] == "NOTEMPLATE"))) { $form_array[$field_name]["description"] = ""; } $form_array[$field_name]["value"] = (isset($data[$field_name]) ? $data[$field_name] : ""); $form_array[$field_name]["form_id"] = (empty($data["id"]) ? "0" : $data["id"]); if (!(($use_data_template == false) || (!empty($data_template{"t_" . $field_name})) || ($field_array["flags"] == "NOTEMPLATE"))) { $form_array[$field_name]["method"] = "template_" . $form_array[$field_name]["method"]; } } draw_edit_form( array( "config" => array( "no_form_tag" => true ), "fields" => inject_form_variables($form_array, (isset($data) ? $data : array())) ) ); end_box(); /* fetch ALL rrd's for this data source */ if (!empty($_GET["id"])) { $template_data_rrds = db_fetch_assoc("select id,data_source_name from data_template_rrd where local_data_id=" . $_GET["id"] . " order by data_source_name"); } /* select the first "rrd" of this data source by default */ if (empty($_GET["view_rrd"])) { $_GET["view_rrd"] = (isset($template_data_rrds[0]["id"]) ? $template_data_rrds[0]["id"] : "0"); } /* get more information about the rrd we chose */ if (!empty($_GET["view_rrd"])) { $local_data_template_rrd_id = db_fetch_cell("select local_data_template_rrd_id from data_template_rrd where id=" . $_GET["view_rrd"]); $rrd = db_fetch_row("select * from data_template_rrd where id=" . $_GET["view_rrd"]); $rrd_template = db_fetch_row("select * from data_template_rrd where id=$local_data_template_rrd_id"); $header_label = "[edit: " . $rrd["data_source_name"] . "]"; }else{ $header_label = ""; } $i = 0; if (isset($template_data_rrds)) { if (sizeof($template_data_rrds) > 1) { /* draw the data source tabs on the top of the page */ print " \n"; foreach ($template_data_rrds as $template_data_rrd) { $i++; print " \n \n"; } print " \n
$i: " . $template_data_rrd["data_source_name"] . "" . (($use_data_template == false) ? " Delete" : "") . "
\n"; }elseif (sizeof($template_data_rrds) == 1) { $_GET["view_rrd"] = $template_data_rrds[0]["id"]; } } start_box("", "98%", $colors["header"], "3", "center", ""); print " Data Source Item $header_label " . ((!empty($_GET["id"]) && (empty($data_template["data_template_id"]))) ? "New " : "") . " \n"; /* data input fields list */ if ((empty($data["data_input_id"])) || (db_fetch_cell("select type_id from data_input where id=" . $data["data_input_id"]) > "1")) { unset($struct_data_source_item["data_input_field_id"]); }else{ $struct_data_source_item["data_input_field_id"]["sql"] = "select id,CONCAT(data_name,' - ',name) as name from data_input_fields where data_input_id=" . $data["data_input_id"] . " and input_output='out' and update_rra='on' order by data_name,name"; } $form_array = array(); while (list($field_name, $field_array) = each($struct_data_source_item)) { $form_array += array($field_name => $struct_data_source_item[$field_name]); if (!(($use_data_template == false) || ($rrd_template{"t_" . $field_name} == "on"))) { $form_array[$field_name]["description"] = ""; } $form_array[$field_name]["value"] = (isset($rrd) ? $rrd[$field_name] : ""); if (!(($use_data_template == false) || ($rrd_template{"t_" . $field_name} == "on"))) { $form_array[$field_name]["method"] = "template_" . $form_array[$field_name]["method"]; } } draw_edit_form( array( "config" => array( "no_form_tag" => true ), "fields" => array( "data_template_rrd_id" => array( "method" => "hidden", "value" => (isset($rrd) ? $rrd["id"] : "0") ), "local_data_template_rrd_id" => array( "method" => "hidden", "value" => (isset($rrd) ? $rrd["local_data_template_rrd_id"] : "0") ) ) + $form_array ) ); end_box(); /* data source data goes here */ data_edit(); form_hidden_id("current_rrd", $_GET["view_rrd"]); } /* display the debug mode box if the user wants it */ if ((isset($_SESSION["ds_debug_mode"])) && (isset($_GET["id"]))) { ?>
Data Source Debug
Data Sources [host: " . (empty($host["hostname"]) ? "No Host" : $host["hostname"]) . "]", "98%", $colors["header"], "3", "center", "data_sources.php?action=ds_edit&host_id=" . $_REQUEST["host_id"]); ?> ">
Select a host:  Search:  ">  
$page_number"; }else{ $url_page_select .= "$page_number"; } if (($i+read_config_option("num_rows_data_source")) < $total_rows) { $url_page_select .= ","; } } $nav = " \n \n \n
<< "; if ($_REQUEST["page"] > 1) { $nav .= ""; } $nav .= "Previous"; if ($_REQUEST["page"] > 1) { $nav .= ""; } $nav .= " Showing Rows " . ((read_config_option("num_rows_data_source")*($_REQUEST["page"]-1))+1) . " to " . ((($total_rows < read_config_option("num_rows_data_source")) || ($total_rows < (read_config_option("num_rows_data_source")*$_REQUEST["page"]))) ? $total_rows : (read_config_option("num_rows_data_source")*$_REQUEST["page"])) . " of $total_rows [$url_page_select] "; if (($_REQUEST["page"] * read_config_option("num_rows_data_source")) < $total_rows) { $nav .= ""; } $nav .= "Next"; if (($_REQUEST["page"] * read_config_option("num_rows_data_source")) < $total_rows) { $nav .= ""; } $nav .= " >>
\n"; print " $nav Name Data Input Method Active Template Name
\n"; $i = 0; if (sizeof($data_sources) > 0) { foreach ($data_sources as $data_source) { form_alternate_row_color($colors["alternate"],$colors["light"],$i); $i++; ?> \\1", title_trim($data_source["name_cache"], read_config_option("max_title_data_source")));?> No");?> None" : $data_source["data_template_name"]);?> "> No Data Sources"; } end_box(false); ?>
  Choose an action: