⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inc_graph_filter_table.php

📁 Cacti是一套基于PHP,MySQL,SNMP及RRDTool开发的网络流量监测图形分析工具。 它通过snmpget来获取数据
💻 PHP
字号:
	<tr bgcolor="<?php print $colors["panel"];?>">		<form name="form_graph_id">		<td>			<table cellpadding="1" cellspacing="0">				<tr>					<td width="50">						Host:&nbsp;					</td>					<td width="1">						<select name="host_id" onChange="applyGraphsFilterChange(document.form_graph_id)">							<option value="-1"<?php if ($_REQUEST["host_id"] == "-1") {?> selected<?php }?>>Any</option>							<option value="0"<?php if ($_REQUEST["host_id"] == "0") {?> selected<?php }?>>None</option>							<?php							if (read_config_option("auth_method") != 0) {								/* get policy information for the sql where clause */								$current_user = db_fetch_row("select * from user_auth where id=" . $_SESSION["sess_user_id"]);								$sql_where = get_graph_permissions_sql($current_user["policy_graphs"], $current_user["policy_hosts"], $current_user["policy_graph_templates"]);								$hosts = db_fetch_assoc("SELECT DISTINCT host.id, CONCAT_WS('',host.description,' (',host.hostname,')') as name									FROM (graph_templates_graph,host)									LEFT JOIN graph_local ON (graph_local.host_id=host.id)									LEFT JOIN graph_templates ON (graph_templates.id=graph_local.graph_template_id)									LEFT JOIN user_auth_perms ON ((graph_templates_graph.local_graph_id=user_auth_perms.item_id and user_auth_perms.type=1 and user_auth_perms.user_id=" . $_SESSION["sess_user_id"] . ") OR (host.id=user_auth_perms.item_id and user_auth_perms.type=3 and user_auth_perms.user_id=" . $_SESSION["sess_user_id"] . ") OR (graph_templates.id=user_auth_perms.item_id and user_auth_perms.type=4 and user_auth_perms.user_id=" . $_SESSION["sess_user_id"] . "))									WHERE graph_templates_graph.local_graph_id=graph_local.id									" . (empty($sql_where) ? "" : "and $sql_where") . "									ORDER BY name");							}else{								$hosts = db_fetch_assoc("SELECT DISTINCT host.id, CONCAT_WS('',host.description,' (',host.hostname,')') as name									FROM host									ORDER BY name");							}							if (sizeof($hosts) > 0) {							foreach ($hosts as $host) {								print "<option value=' " . $host["id"] . "'"; if ($_REQUEST["host_id"] == $host["id"]) { print " selected"; } print ">" . title_trim($host["name"], 40) . "</option>\n";							}							}							?>						</select>					</td>					<td width="70">						&nbsp;Template:&nbsp;					</td>					<td width="1">						<select name="template_id" onChange="applyGraphsFilterChange(document.form_graph_id)">							<option value="-1"<?php if ($_REQUEST["template_id"] == "-1") {?> selected<?php }?>>Any</option>							<option value="0"<?php if ($_REQUEST["template_id"] == "0") {?> selected<?php }?>>None</option>							<?php							if (read_config_option("auth_method") != 0) {								$templates = db_fetch_assoc("SELECT DISTINCT graph_templates.id, graph_templates.name 									FROM (graph_templates_graph,graph_local)									LEFT JOIN host ON (host.id=graph_local.host_id)									LEFT JOIN graph_templates ON (graph_templates.id=graph_local.graph_template_id)									LEFT JOIN user_auth_perms ON ((graph_templates_graph.local_graph_id=user_auth_perms.item_id and user_auth_perms.type=1 and user_auth_perms.user_id=" . $_SESSION["sess_user_id"] . ") OR (host.id=user_auth_perms.item_id and user_auth_perms.type=3 and user_auth_perms.user_id=" . $_SESSION["sess_user_id"] . ") OR (graph_templates.id=user_auth_perms.item_id and user_auth_perms.type=4 and user_auth_perms.user_id=" . $_SESSION["sess_user_id"] . "))									WHERE graph_templates_graph.local_graph_id=graph_local.id									AND graph_templates.id IS NOT NULL									" . (empty($sql_where) ? "" : "AND $sql_where") . "									ORDER BY name");							}else{								$templates = db_fetch_assoc("SELECT DISTINCT graph_templates.id, graph_templates.name									FROM graph_templates									ORDER BY name");							}							if (sizeof($templates) > 0) {							foreach ($templates as $template) {								print "<option value=' " . $template["id"] . "'"; if ($_REQUEST["template_id"] == $template["id"]) { print " selected"; } print ">" . title_trim($template["name"], 40) . "</option>\n";							}							}							?>						</select>					</td>					<td width="120" nowrap style='white-space: nowrap;'>						&nbsp;<input type="image" src="images/button_go.gif" alt="Go" border="0" align="absmiddle">						<input type="image" src="images/button_clear.gif" name="clear" alt="Clear" border="0" align="absmiddle">					</td>				</tr>			</table>			<table cellpadding="1" cellspacing="0">				<tr>					<td nowrap style='white-space: nowrap;' width="50">						Rows:&nbsp;					</td>					<td width="1">						<select name="graph_rows" onChange="applyGraphsFilterChange(document.form_graph_id)">							<option value="-1"<?php if ($_REQUEST["graph_rows"] == "-1") {?> selected<?php }?>>Default</option>							<?php							if (sizeof($item_rows) > 0) {							foreach ($item_rows as $key => $value) {								print "<option value='" . $key . "'"; if ($_REQUEST["graph_rows"] == $key) { print " selected"; } print ">" . $value . "</option>\n";							}							}							?>						</select>					</td>					<td width="50">						&nbsp;Search:&nbsp;					</td>					<td>						<input type="text" name="filter" size="40" value="<?php print $_REQUEST["filter"];?>">					</td>				</tr>			</table>		</td>		<input type='hidden' name='page' value='1'>		</form>	</tr>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -