|
|
@ -14,29 +14,45 @@ include("header.php"); |
|
|
|
// Statistics |
|
|
|
// Statistics |
|
|
|
|
|
|
|
|
|
|
|
// asset |
|
|
|
// asset |
|
|
|
$sth = $dbh->query("SELECT COUNT(asset_id) AS asset_counter FROM asset"); |
|
|
|
$sth = $dbh->query("SELECT COUNT(asset_id) FROM asset"); |
|
|
|
$smarty->assign("asset_counter", $sth->fetchColumn()); |
|
|
|
$smarty->assign("asset_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// assetclass |
|
|
|
|
|
|
|
$sth = $dbh->query("SELECT COUNT(assetclass_id) AS asset_counter FROM assetclass"); |
|
|
|
|
|
|
|
$smarty->assign("assetclass_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// assetclassgroup |
|
|
|
|
|
|
|
$sth = $dbh->query("SELECT COUNT(assetclassgroup_id) FROM assetclassgroup"); |
|
|
|
|
|
|
|
$smarty->assign("assetclassgroup_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
// location |
|
|
|
// location |
|
|
|
$sth = $dbh->query("SELECT COUNT(location_id) AS location_counter FROM location"); |
|
|
|
$sth = $dbh->query("SELECT COUNT(location_id) FROM location"); |
|
|
|
$smarty->assign("location_counter", $sth->fetchColumn()); |
|
|
|
$smarty->assign("location_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
// node |
|
|
|
// node |
|
|
|
$sth = $dbh->query("SELECT COUNT(node_id) AS node_counter FROM node"); |
|
|
|
$sth = $dbh->query("SELECT COUNT(node_id) FROM node"); |
|
|
|
$smarty->assign("node_counter", $sth->fetchColumn()); |
|
|
|
$smarty->assign("node_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
// subnet |
|
|
|
// subnet |
|
|
|
$sth = $dbh->query("SELECT COUNT(subnet_id) AS subnet_counter FROM subnet"); |
|
|
|
$sth = $dbh->query("SELECT COUNT(subnet_id) FROM subnet"); |
|
|
|
$smarty->assign("subnet_counter", $sth->fetchColumn()); |
|
|
|
$smarty->assign("subnet_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// nat |
|
|
|
|
|
|
|
$sth = $dbh->query("SELECT COUNT(nat_id) FROM nat"); |
|
|
|
|
|
|
|
$smarty->assign("nat_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
// vlan |
|
|
|
// vlan |
|
|
|
$sth = $dbh->query("SELECT COUNT(vlan_id) AS vlan_counter FROM vlan"); |
|
|
|
$sth = $dbh->query("SELECT COUNT(vlan_id) FROM vlan"); |
|
|
|
$smarty->assign("vlan_counter", $sth->fetchColumn()); |
|
|
|
$smarty->assign("vlan_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
// zone |
|
|
|
// zone |
|
|
|
$sth = $dbh->query("SELECT COUNT(zone_id) AS zone_counter FROM zone"); |
|
|
|
$sth = $dbh->query("SELECT COUNT(zone_id) FROM zone"); |
|
|
|
$smarty->assign("zone_counter", $sth->fetchColumn()); |
|
|
|
$smarty->assign("zone_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// cable |
|
|
|
|
|
|
|
$sth = $dbh->query("SELECT COUNT(cable_id) FROM cable"); |
|
|
|
|
|
|
|
$smarty->assign("cable_counter", $sth->fetchColumn()); |
|
|
|
|
|
|
|
|
|
|
|
$smarty->display("index.tpl"); |
|
|
|
$smarty->display("index.tpl"); |
|
|
|
|
|
|
|
|
|
|
|
include("footer.php"); |
|
|
|
include("footer.php"); |
|
|
|