mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Apply "Squiz" code style on old (pre-2014) files
This commit is contained in:
@@ -2,90 +2,103 @@
|
||||
|
||||
print_optionbar_start();
|
||||
|
||||
echo("<span style='font-weight: bold;'>Serverfarm Rservers</span> » ");
|
||||
echo "<span style='font-weight: bold;'>Serverfarm Rservers</span> » ";
|
||||
|
||||
#$auth = TRUE;
|
||||
// $auth = TRUE;
|
||||
$menu_options = array('basic' => 'Basic');
|
||||
|
||||
$menu_options = array('basic' => 'Basic',
|
||||
);
|
||||
if (!$_GET['opta']) {
|
||||
$_GET['opta'] = 'basic';
|
||||
}
|
||||
|
||||
if (!$_GET['opta']) { $_GET['opta'] = "basic"; }
|
||||
$sep = '';
|
||||
foreach ($menu_options as $option => $text) {
|
||||
if ($_GET['optd'] == $option) {
|
||||
echo "<span class='pagemenu-selected'>";
|
||||
}
|
||||
|
||||
$sep = "";
|
||||
foreach ($menu_options as $option => $text)
|
||||
{
|
||||
if ($_GET['optd'] == $option) { echo("<span class='pagemenu-selected'>"); }
|
||||
echo('<a href="device/device=' . $device['device_id'] . '/tab=routing/type=loadbalancer_rservers/' . $option . '/">' . $text
|
||||
. '</a>');
|
||||
if ($_GET['optd'] == $option) { echo("</span>"); }
|
||||
echo(" | ");
|
||||
echo '<a href="device/device='.$device['device_id'].'/tab=routing/type=loadbalancer_rservers/'.$option.'/">'.$text .'</a>';
|
||||
if ($_GET['optd'] == $option) {
|
||||
echo '</span>';
|
||||
}
|
||||
|
||||
echo ' | ';
|
||||
}
|
||||
|
||||
unset($sep);
|
||||
|
||||
echo(' Graphs: ');
|
||||
echo ' Graphs: ';
|
||||
|
||||
#$graph_types = array("bits" => "Bits",
|
||||
# "pkts" => "Packets",
|
||||
# "errors" => "Errors");
|
||||
// $graph_types = array("bits" => "Bits",
|
||||
// "pkts" => "Packets",
|
||||
// "errors" => "Errors");
|
||||
$graph_types = array(
|
||||
'curr' => 'CurrentConns',
|
||||
'failed' => 'FailedConns',
|
||||
'total' => 'TotalConns',
|
||||
);
|
||||
|
||||
$graph_types = array("curr" => "CurrentConns",
|
||||
"failed" => "FailedConns",
|
||||
"total" => "TotalConns");
|
||||
foreach ($graph_types as $type => $descr) {
|
||||
echo "$type_sep";
|
||||
if ($_GET['opte'] == $type) {
|
||||
echo "<span class='pagemenu-selected'>";
|
||||
}
|
||||
|
||||
foreach ($graph_types as $type => $descr)
|
||||
{
|
||||
echo("$type_sep");
|
||||
if ($_GET['opte'] == $type) { echo("<span class='pagemenu-selected'>"); }
|
||||
echo('<a href="device/device=' . $device['device_id'] . '/tab=routing/type=loadbalancer_rservers/graphs/'.$type.'/">'.$descr.'</a>');
|
||||
if ($_GET['opte'] == $type) { echo("</span>"); }
|
||||
echo '<a href="device/device='.$device['device_id'].'/tab=routing/type=loadbalancer_rservers/graphs/'.$type.'/">'.$descr.'</a>';
|
||||
if ($_GET['opte'] == $type) {
|
||||
echo '</span>';
|
||||
}
|
||||
|
||||
$type_sep = " | ";
|
||||
$type_sep = ' | ';
|
||||
}
|
||||
|
||||
print_optionbar_end();
|
||||
|
||||
echo("<div style='margin: 5px;'><table border=0 cellspacing=0 cellpadding=0 width=100%>");
|
||||
$i = "0";
|
||||
foreach (dbFetchRows("SELECT * FROM `loadbalancer_rservers` WHERE `device_id` = ? ORDER BY `farm_id`", array($device['device_id'])) as $rserver)
|
||||
{
|
||||
if (is_integer($i/2)) { $bg_colour = $list_colour_a; } else { $bg_colour = $list_colour_b; }
|
||||
echo "<div style='margin: 5px;'><table border=0 cellspacing=0 cellpadding=0 width=100%>";
|
||||
$i = '0';
|
||||
foreach (dbFetchRows('SELECT * FROM `loadbalancer_rservers` WHERE `device_id` = ? ORDER BY `farm_id`', array($device['device_id'])) as $rserver) {
|
||||
if (is_integer($i / 2)) {
|
||||
$bg_colour = $list_colour_a;
|
||||
}
|
||||
else {
|
||||
$bg_colour = $list_colour_b;
|
||||
}
|
||||
|
||||
if($rserver['StateDescr'] == "Server is now operational") { $rserver_class="green"; } else { $rserver_class="red"; }
|
||||
if ($rserver['StateDescr'] == 'Server is now operational') {
|
||||
$rserver_class = 'green';
|
||||
} else {
|
||||
$rserver_class = 'red';
|
||||
}
|
||||
|
||||
echo("<tr bgcolor='$bg_colour'>");
|
||||
#echo("<td width=320 class=list-large>" . $tunnel['local_addr'] . " » " . $tunnel['peer_addr'] . "</a></td>");
|
||||
echo("<td width=700 class=list-small>" . $rserver['farm_id'] . "</a></td>");
|
||||
#echo("<td width=150 class=box-desc>" . $rserver['farm_id'] . "</td>");
|
||||
echo("<td width=230 class=list-small><span class='".$rserver_class."'>" . $rserver['StateDescr'] . "</span></td>");
|
||||
echo("</tr>");
|
||||
if ($_GET['optd'] == "graphs")
|
||||
{
|
||||
echo('<tr class="list-bold">');
|
||||
echo("<td colspan = 3>");
|
||||
$graph_type = "rserver_" . $_GET['opte'];
|
||||
echo "<tr bgcolor='$bg_colour'>";
|
||||
// echo("<td width=320 class=list-large>" . $tunnel['local_addr'] . " » " . $tunnel['peer_addr'] . "</a></td>");
|
||||
echo '<td width=700 class=list-small>'.$rserver['farm_id'].'</a></td>';
|
||||
// echo("<td width=150 class=box-desc>" . $rserver['farm_id'] . "</td>");
|
||||
echo "<td width=230 class=list-small><span class='".$rserver_class."'>".$rserver['StateDescr'].'</span></td>';
|
||||
echo '</tr>';
|
||||
if ($_GET['optd'] == 'graphs') {
|
||||
echo '<tr class="list-bold">';
|
||||
echo '<td colspan = 3>';
|
||||
$graph_type = 'rserver_'.$_GET['opte'];
|
||||
|
||||
$graph_array['height'] = "100";
|
||||
$graph_array['width'] = "215";
|
||||
$graph_array['to'] = $config['time']['now'];
|
||||
$graph_array['id'] = $rserver['rserver_id'];
|
||||
$graph_array['type'] = $graph_type;
|
||||
$graph_array['height'] = '100';
|
||||
$graph_array['width'] = '215';
|
||||
$graph_array['to'] = $config['time']['now'];
|
||||
$graph_array['id'] = $rserver['rserver_id'];
|
||||
$graph_array['type'] = $graph_type;
|
||||
|
||||
include("includes/print-graphrow.inc.php");
|
||||
include 'includes/print-graphrow.inc.php';
|
||||
|
||||
#include("includes/print-interface-graphs.inc.php");
|
||||
|
||||
echo("
|
||||
// include("includes/print-interface-graphs.inc.php");
|
||||
echo '
|
||||
</td>
|
||||
</tr>");
|
||||
}
|
||||
</tr>';
|
||||
}
|
||||
|
||||
echo("</td>");
|
||||
echo("</tr>");
|
||||
echo '</td>';
|
||||
echo '</tr>';
|
||||
|
||||
$i++;
|
||||
$i++;
|
||||
}
|
||||
|
||||
echo("</table></div>");
|
||||
|
||||
?>
|
||||
echo '</table></div>';
|
||||
|
||||
Reference in New Issue
Block a user