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

📄 inc_graph_view_filter_table.php

📁 Cacti是一套基于PHP,MySQL,SNMP及RRDTool开发的网络流量监测图形分析工具。 它通过snmpget来获取数据
💻 PHP
字号:
	<tr bgcolor="<?php print $colors["panel"];?>" class="noprint">		<form name="form_graph_view" method="post">		<td class="noprint">			<table width="100%" cellpadding="0" cellspacing="0">				<tr class="noprint">					<td nowrap style='white-space: nowrap;' width="40">						&nbsp;<strong>Host:</strong>&nbsp;					</td>					<td width="1">						<select name="host_id" onChange="applyGraphPreviewFilterChange(document.form_graph_view)">							<option value="0"<?php if ($_REQUEST["host_id"] == "0") {?> selected<?php }?>>Any</option>							<?php							if (read_config_option("auth_method") != 0) {								/* get policy information for the sql where clause */								$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, host.description as 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									" . (empty($sql_where) ? "" : "and $sql_where") . "									ORDER BY name");							}else{								$hosts = db_fetch_assoc("SELECT DISTINCT host.id, host.description 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 ">" . $host["name"] . "</option>\n";							}							}							?>						</select>					</td>					<td nowrap style='white-space: nowrap;' width="70">						&nbsp;<strong>Template:</strong>&nbsp;					</td>					<td width="1">						<select name="graph_template_id" onChange="applyGraphPreviewFilterChange(document.form_graph_view)">							<option value="0"<?php if ($_REQUEST["graph_template_id"] == "0") {?> selected<?php }?>>Any</option>							<?php							if (read_config_option("auth_method") != 0) {								$graph_templates = db_fetch_assoc("SELECT DISTINCT graph_templates.*									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									" . (empty($sql_where) ? "" : "and $sql_where") . "									ORDER BY name");							}else{								$graph_templates = db_fetch_assoc("SELECT DISTINCT graph_templates.*									FROM graph_templates									ORDER BY name");							}							if (sizeof($graph_templates) > 0) {							foreach ($graph_templates as $template) {								print "<option value='" . $template["id"] . "'"; if ($_REQUEST["graph_template_id"] == $template["id"]) { print " selected"; } print ">" . $template["name"] . "</option>\n";							}							}							?>						</select>					</td>					<td nowrap style='white-space: nowrap;' width="50">						&nbsp;<strong>Search:</strong>&nbsp;					</td>					<td width="1">						<input type="text" name="filter" size="40" value="<?php print $_REQUEST["filter"];?>">					</td>					<td>						&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>		</td>		</form>	</tr>

⌨️ 快捷键说明

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