Apply "Squiz" code style on old (pre-2014) files

This commit is contained in:
Job Snijders
2015-07-10 13:36:21 +02:00
parent e4f4eb44dc
commit ebd0f6fc35
539 changed files with 13591 additions and 13223 deletions

View File

@@ -1,97 +1,122 @@
<?php
$pagetitle[] = "Pseudowires";
$pagetitle[] = 'Pseudowires';
if(!isset($vars['view'])) { $vars['view'] = 'detail'; }
if (!isset($vars['view'])) {
$vars['view'] = 'detail';
}
$link_array = array('page' => 'pseudowires');
print_optionbar_start();
echo('<span style="font-weight: bold;">Pseudowires</span> &#187; ');
echo '<span style="font-weight: bold;">Pseudowires</span> &#187; ';
if ($vars['view'] == "detail") { echo('<span class="pagemenu-selected">'); }
echo(generate_link("Details",$link_array,array('view'=> 'detail')));
if ($vars['view'] == "detail") { echo('</span>'); }
if ($vars['view'] == 'detail') {
echo '<span class="pagemenu-selected">';
}
echo(" | ");
echo generate_link('Details', $link_array, array('view' => 'detail'));
if ($vars['view'] == 'detail') {
echo '</span>';
}
if ($vars['view'] == "minigraphs") { echo('<span class="pagemenu-selected">'); }
echo(generate_link("Mini Graphs",$link_array,array('view' => "minigraphs")));
if ($vars['view'] == "minigraphs") { echo('</span>'); }
echo ' | ';
if ($vars['view'] == 'minigraphs') {
echo '<span class="pagemenu-selected">';
}
echo generate_link('Mini Graphs', $link_array, array('view' => 'minigraphs'));
if ($vars['view'] == 'minigraphs') {
echo '</span>';
}
print_optionbar_end();
echo("<table cellpadding=5 cellspacing=0 class=devicetable width=100%>");
echo '<table cellpadding=5 cellspacing=0 class=devicetable width=100%>';
foreach (dbFetchRows("SELECT * FROM pseudowires AS P, ports AS I, devices AS D WHERE P.port_id = I.port_id AND I.device_id = D.device_id ORDER BY D.hostname,I.ifDescr") as $pw_a)
{
$i = 0;
while ($i < count($linkdone))
{
$thislink = $pw_a['device_id'] . $pw_a['port_id'];
if ($linkdone[$i] == $thislink) { $skip = "yes"; }
$i++;
}
$pw_b = dbFetchRow("SELECT * from `devices` AS D, `ports` AS I, `pseudowires` AS P WHERE D.device_id = ? AND D.device_id = I.device_id
AND P.cpwVcID = ? AND P.port_id = I.port_id", array($pw_a['peer_device_id'], $pw_a['cpwVcID']));
if (!port_permitted($pw_a['port_id'])) { $skip = "yes"; }
if (!port_permitted($pw_b['port_id'])) { $skip = "yes"; }
if ($skip)
{
unset($skip);
} else {
if ($bg == "ffffff") { $bg = "e5e5e5"; } else { $bg="ffffff"; }
echo("<tr style=\"background-color: #$bg;\"><td rowspan=2 style='font-size:18px; padding:4px;'>".$pw_a['cpwVcID']."</td><td>".generate_device_link($pw_a)."</td><td>".generate_port_link($pw_a)."</td>
<td rowspan=2> <img src='images/16/arrow_right.png'> </td>
<td>".generate_device_link($pw_b)."</td><td>".generate_port_link($pw_b)."</td></tr>");
echo("<tr style=\"background-color: #$bg;\"><td colspan=2>".$pw_a['ifAlias']."</td><td colspan=2>".$pw_b['ifAlias']."</td></tr>");
if ($vars['view'] == "minigraphs")
{
echo("<tr style=\"background-color: #$bg;\"><td></td><td colspan=2>");
if ($pw_a)
{
$pw_a['width'] = "150";
$pw_a['height'] = "30";
$pw_a['from'] = $config['time']['day'];
$pw_a['to'] = $config['time']['now'];
$pw_a['bg'] = $bg;
$types = array('bits','upkts','errors');
foreach ($types as $graph_type)
{
$pw_a['graph_type'] = "port_".$graph_type;
print_port_thumbnail($pw_a);
foreach (dbFetchRows('SELECT * FROM pseudowires AS P, ports AS I, devices AS D WHERE P.port_id = I.port_id AND I.device_id = D.device_id ORDER BY D.hostname,I.ifDescr') as $pw_a) {
$i = 0;
while ($i < count($linkdone)) {
$thislink = $pw_a['device_id'].$pw_a['port_id'];
if ($linkdone[$i] == $thislink) {
$skip = 'yes';
}
}
echo("</td><td></td><td colspan=2>");
if ($pw_b)
{
$pw_b['width'] = "150";
$pw_b['height'] = "30";
$pw_b['from'] = $config['time']['day'];
$pw_b['to'] = $config['time']['now'];
$pw_b['bg'] = $bg;
$types = array('bits','upkts','errors');
foreach ($types as $graph_type)
{
$pw_b['graph_type'] = "port_".$graph_type;
print_port_thumbnail($pw_b);
}
}
echo("</td></tr>");
$i++;
}
$linkdone[] = $pw_b['device_id'] . $pw_b['port_id'];
}
}
$pw_b = dbFetchRow(
'SELECT * from `devices` AS D, `ports` AS I, `pseudowires` AS P WHERE D.device_id = ? AND D.device_id = I.device_id
AND P.cpwVcID = ? AND P.port_id = I.port_id',
array(
$pw_a['peer_device_id'],
$pw_a['cpwVcID'],
)
);
echo("</table>");
if (!port_permitted($pw_a['port_id'])) {
$skip = 'yes';
}
?>
if (!port_permitted($pw_b['port_id'])) {
$skip = 'yes';
}
if ($skip) {
unset($skip);
}
else {
if ($bg == 'ffffff') {
$bg = 'e5e5e5';
}
else {
$bg = 'ffffff';
}
echo "<tr style=\"background-color: #$bg;\"><td rowspan=2 style='font-size:18px; padding:4px;'>".$pw_a['cpwVcID'].'</td><td>'.generate_device_link($pw_a).'</td><td>'.generate_port_link($pw_a)."</td>
<td rowspan=2> <img src='images/16/arrow_right.png'> </td>
<td>".generate_device_link($pw_b).'</td><td>'.generate_port_link($pw_b).'</td></tr>';
echo "<tr style=\"background-color: #$bg;\"><td colspan=2>".$pw_a['ifAlias'].'</td><td colspan=2>'.$pw_b['ifAlias'].'</td></tr>';
if ($vars['view'] == 'minigraphs') {
echo "<tr style=\"background-color: #$bg;\"><td></td><td colspan=2>";
if ($pw_a) {
$pw_a['width'] = '150';
$pw_a['height'] = '30';
$pw_a['from'] = $config['time']['day'];
$pw_a['to'] = $config['time']['now'];
$pw_a['bg'] = $bg;
$types = array('bits', 'upkts', 'errors');
foreach ($types as $graph_type)
{
$pw_a['graph_type'] = 'port_'.$graph_type;
print_port_thumbnail($pw_a);
}
}
echo '</td><td></td><td colspan=2>';
if ($pw_b) {
$pw_b['width'] = '150';
$pw_b['height'] = '30';
$pw_b['from'] = $config['time']['day'];
$pw_b['to'] = $config['time']['now'];
$pw_b['bg'] = $bg;
$types = array('bits', 'upkts', 'errors');
foreach ($types as $graph_type) {
$pw_b['graph_type'] = 'port_'.$graph_type;
print_port_thumbnail($pw_b);
}
}
echo '</td></tr>';
}//end if
$linkdone[] = $pw_b['device_id'].$pw_b['port_id'];
}//end if
}//end foreach
echo '</table>';