Changes adopted from version 0.5
This commit is contained in:
126
vlanview.php
126
vlanview.php
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/*****************************************************************************
|
||||
IP Reg, a PHP/MySQL IPAM tool
|
||||
Copyright (C) 2008 Wietse Warendorff
|
||||
Copyright (C) 2007-2009 Wietse Warendorff
|
||||
|
||||
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
|
||||
@@ -20,45 +20,91 @@
|
||||
or contact me at wietsew@users.sourceforge.net
|
||||
*****************************************************************************/
|
||||
|
||||
// includes
|
||||
include("includes.php");
|
||||
|
||||
// get id
|
||||
$vlan_id = $_GET['vlan_id'];
|
||||
|
||||
// check authorisation
|
||||
$auth = auth("vlan", $config_auth_vlanview, $vlan_id);
|
||||
|
||||
// start output
|
||||
include("header.php");
|
||||
|
||||
// set template
|
||||
$tp = new Template("tpl/vlanview.tpl");
|
||||
|
||||
// set language variables
|
||||
$tp->setvars($lang);
|
||||
|
||||
// get vlan info
|
||||
$result = mysql_query("SELECT vlan_name, vlan_number, vlan_info FROM vlan WHERE vlan_id='$vlan_id'") or die(mysql_error());
|
||||
$row = mysql_fetch_object($result);
|
||||
$tp->set("vlan_id", $vlan_id);
|
||||
$tp->set("vlan_name", $row->vlan_name);
|
||||
$tp->set("vlan_number", $row->vlan_number);
|
||||
$tp->set("vlan_info", $row->vlan_info);
|
||||
|
||||
// get subnet info
|
||||
$result = mysql_query("SELECT subnet_id, subnet_address, subnet_mask FROM subnet WHERE vlan_id='$vlan_id' ORDER BY INET_ATON(subnet_address)") or die(mysql_error());
|
||||
for ($i=0;$row=mysql_fetch_object($result);$i++) {
|
||||
$tp->set("subnet_id", $row->subnet_id);
|
||||
$tp->set("subnet_address", $row->subnet_address);
|
||||
$tp->set("subnet_mask", $row->subnet_mask);
|
||||
$tp->parse("subnetrow");
|
||||
}
|
||||
if (($i>0) ? $tp->parse("subnet") : $tp->hide("subnet"));
|
||||
// start page
|
||||
// includes
|
||||
include("includes.php");
|
||||
|
||||
// output
|
||||
$tp->parse();
|
||||
$tp->spit();
|
||||
// get id
|
||||
$vlan_id = sanitize($_GET['vlan_id']);
|
||||
|
||||
// start output
|
||||
include("header.php");
|
||||
|
||||
// set template
|
||||
$tp = new Template("tpl/vlanview.tpl", $config_yapter_error);
|
||||
|
||||
// set language variables
|
||||
$tp->setvars($lang);
|
||||
|
||||
include("footer.php");
|
||||
// setup vlan
|
||||
// build query
|
||||
$query = "SELECT
|
||||
vlan.vlan_name AS vlan_name,
|
||||
vlan.vlan_number AS vlan_number,
|
||||
vlan.vlan_info AS vlan_info
|
||||
FROM
|
||||
vlan
|
||||
WHERE
|
||||
vlan.vlan_id=" . $vlan_id;
|
||||
|
||||
// run query
|
||||
$vlan = $db->db_select($query);
|
||||
|
||||
// send to tpl
|
||||
$tp->set("vlan_id", $vlan_id);
|
||||
$tp->set("vlan_name", $vlan[0]['vlan_name']);
|
||||
$tp->set("vlan_number", $vlan[0]['vlan_number']);
|
||||
$tp->set("vlan_info", nl2br($vlan[0]['vlan_info']));
|
||||
|
||||
// setup subnets
|
||||
// build query
|
||||
$query = "SELECT
|
||||
subnet.subnet_id AS subnet_id,
|
||||
subnet.subnet_address AS subnet_address,
|
||||
subnet.subnet_mask AS subnet_mask
|
||||
FROM
|
||||
subnet,
|
||||
subnetvlan
|
||||
WHERE
|
||||
subnetvlan.vlan_id=" . $vlan_id . "
|
||||
AND subnet.subnet_id=subnetvlan.subnet_id
|
||||
ORDER BY
|
||||
INET_ATON(subnet.subnet_address)";
|
||||
|
||||
// run query
|
||||
$subnets = $db->db_select($query);
|
||||
|
||||
// count results
|
||||
$subnet_counter = count($subnets);
|
||||
|
||||
// counter to tpl
|
||||
$tp->set("subnet_counter", $subnet_counter);
|
||||
|
||||
// any nodes?
|
||||
if ($subnet_counter>0) {
|
||||
// get objects
|
||||
foreach($subnets AS $subnet) {
|
||||
// send to tpl
|
||||
$tp->set("subnet_id", $subnet['subnet_id']);
|
||||
$tp->set("subnet_address", $subnet['subnet_address']);
|
||||
$tp->set("subnet_mask", $subnet['subnet_mask']);
|
||||
|
||||
// parse row
|
||||
$tp->parse("subnet_row");
|
||||
}
|
||||
|
||||
// parse block
|
||||
$tp->parse("subnet_table");
|
||||
} else {
|
||||
// hide block
|
||||
$tp->hide("subnet_table");
|
||||
}
|
||||
|
||||
// end page
|
||||
// output
|
||||
$tp->parse();
|
||||
$tp->spit();
|
||||
|
||||
// end output
|
||||
include("footer.php");
|
||||
?>
|
||||
Reference in New Issue
Block a user