Revert "Fix coding style old files (part 2)"

This commit is contained in:
Daniel Preussker
2015-07-15 08:09:10 +00:00
parent 4ebabc634a
commit ba90b85f9f
731 changed files with 33750 additions and 37288 deletions
+67 -77
View File
@@ -9,102 +9,92 @@
<?php
if ($bg == '#ffffff') {
$bg = '#e5e5e5';
}
else {
$bg = '#ffffff';
}
if ($bg == "#ffffff") { $bg = "#e5e5e5"; } else { $bg = "#ffffff"; }
$type_where = ' (';
foreach (explode(',', $vars['type']) as $type) {
if (is_array($config[$type.'_descr']) === false) {
$config[$type.'_descr'] = array($config[$type.'_descr']);
$type_where = " (";
foreach (explode(",", $vars['type']) as $type)
{
if (is_array($config[$type."_descr"]) === FALSE) {
$config[$type."_descr"] = array($config[$type."_descr"]);
}
foreach ($config[$type.'_descr'] as $additional_type) {
if (!empty($additional_type)) {
$type_where .= " $or `port_descr_type` = ?";
$or = 'OR';
foreach ($config[$type."_descr"] as $additional_type) {
if(!empty($additional_type)) {
$type_where .= " $or `port_descr_type` = ?";
$or = "OR";
$type_param[] = $additional_type;
}
}
$type_where .= " $or `port_descr_type` = ?";
$or = 'OR';
$type_param[] = $type;
$type_where .= " $or `port_descr_type` = ?";
$or = "OR";
$type_param[] = $type;
}
$type_where .= ') ';
$ports = dbFetchRows("SELECT * FROM `ports` as I, `devices` AS D WHERE $type_where AND I.device_id = D.device_id ORDER BY I.ifAlias", $type_param);
$type_where .= ") ";
$ports = dbFetchRows("SELECT * FROM `ports` as I, `devices` AS D WHERE $type_where AND I.device_id = D.device_id ORDER BY I.ifAlias", $type_param);
foreach ($ports as $port) {
$if_list .= $seperator.$port['port_id'];
$seperator = ',';
foreach ($ports as $port)
{
$if_list .= $seperator . $port['port_id'];
$seperator = ",";
}
unset($seperator);
$types_array = explode(',', $vars['type']);
for ($i = 0; $i < count($types_array);
$i++) {
$types_array[$i] = ucfirst($types_array[$i]);
}
$types_array = explode(',',$vars['type']);
for ($i = 0; $i < count($types_array);$i++) $types_array[$i] = ucfirst($types_array[$i]);
$types = implode(' + ',$types_array);
$types = implode(' + ', $types_array);
echo("<tr class='iftype'>
<td colspan='5'><span class=list-large>Total Graph for ports of type : ".$types."</span><br />");
echo "<tr class='iftype'>
<td colspan='5'><span class=list-large>Total Graph for ports of type : ".$types.'</span><br />';
if ($if_list)
{
$graph_type = "multiport_bits_separate";
$port['port_id'] = $if_list;
if ($if_list) {
$graph_type = 'multiport_bits_separate';
$port['port_id'] = $if_list;
include("includes/print-interface-graphs.inc.php");
include 'includes/print-interface-graphs.inc.php';
echo("</td></tr>");
echo '</td></tr>';
foreach ($ports as $port)
{
$done = "yes";
unset($class);
$port['ifAlias'] = str_ireplace($type . ": ", "", $port['ifAlias']);
$port['ifAlias'] = str_ireplace("[PNI]", "Private", $port['ifAlias']);
$ifclass = ifclass($port['ifOperStatus'], $port['ifAdminStatus']);
if ($bg == "#ffffff") { $bg = "#e5e5e5"; } else { $bg = "#ffffff"; }
echo("<tr class='iftype'>
<td><span class=list-large>" . generate_port_link($port,$port['port_descr_descr']) . "</span><br />
<span class=interface-desc style='float: left;'>".generate_device_link($port)." ".generate_port_link($port)." </span></td>
<td>".generate_port_link($port, makeshortif($port['ifDescr']))."</td>
<td>".$port['port_descr_speed']."</td>
<td>".$port['port_descr_circuit']."</td>
<td>".$port['port_descr_notes']."</td>
</tr>
<tr class='iftype'>
<td colspan='5'");
foreach ($ports as $port) {
$done = 'yes';
unset($class);
$port['ifAlias'] = str_ireplace($type.': ', '', $port['ifAlias']);
$port['ifAlias'] = str_ireplace('[PNI]', 'Private', $port['ifAlias']);
$ifclass = ifclass($port['ifOperStatus'], $port['ifAdminStatus']);
if ($bg == '#ffffff') {
$bg = '#e5e5e5';
}
else {
$bg = '#ffffff';
}
echo "<tr class='iftype'>
<td><span class=list-large>".generate_port_link($port, $port['port_descr_descr'])."</span><br />
<span class=interface-desc style='float: left;'>".generate_device_link($port).' '.generate_port_link($port).' </span></td>
<td>'.generate_port_link($port, makeshortif($port['ifDescr'])).'</td>
<td>'.$port['port_descr_speed'].'</td>
<td>'.$port['port_descr_circuit'].'</td>
<td>'.$port['port_descr_notes']."</td>
</tr>
<tr class='iftype'>
<td colspan='5'";
if (dbFetchCell('SELECT count(*) FROM mac_accounting WHERE port_id = ?', array($port['port_id']))) {
echo "<span style='float: right;'><a href='device/device=".$port['device_id'].'/tab=port/port='.$port['port_id']."/view=macaccounting/'><img src='/images/16/chart_curve.png' align='absmiddle'> MAC Accounting</a></span>";
}
echo '<br />';
if (file_exists($config['rrd_dir'].'/'.$port['hostname'].'/port-'.$port['ifIndex'].'.rrd')) {
$graph_type = 'port_bits';
include 'includes/print-interface-graphs.inc.php';
}
echo '</td></tr>';
if (dbFetchCell("SELECT count(*) FROM mac_accounting WHERE port_id = ?", array($port['port_id'])))
{
echo("<span style='float: right;'><a href='device/device=".$port['device_id']."/tab=port/port=".$port['port_id']."/view=macaccounting/'><img src='/images/16/chart_curve.png' align='absmiddle'> MAC Accounting</a></span>");
}
echo('<br />');
if (file_exists($config['rrd_dir'] . "/" . $port['hostname'] . "/port-" . $port['ifIndex'] . ".rrd"))
{
$graph_type = "port_bits";
include("includes/print-interface-graphs.inc.php");
}
echo("</td></tr>");
}
}
else {
echo 'None found.</td></tr>';
else
{
echo("None found.</td></tr>");
}
?>