1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2024-12-23 01:55:49 -05:00

version 2.3.5

standard dashboard v2.3.5
This commit is contained in:
LX1IQ 2017-02-14 07:57:24 +01:00 committed by GitHub
parent b5a7eec413
commit 81d1ee3af1
2 changed files with 7 additions and 8 deletions

View File

@ -16,7 +16,6 @@ $Reflectors = $XML->GetAllElements($Reflectorlist, "reflector");
?> ?>
<table class="listingtable"> <table class="listingtable">
<tr> <tr>
<th width="40">#</th> <th width="40">#</th>

View File

@ -1,5 +1,5 @@
<table class="listingtable"> <table class="listingtable">
<tr> <tr>
<th width="25">#</th> <th width="25">#</th>
<th width="60">Flag</th> <th width="60">Flag</th>
<th width="100">DV Station</th> <th width="100">DV Station</th>
@ -22,9 +22,9 @@ $odd = "";
$Reflector->LoadFlags(); $Reflector->LoadFlags();
for ($i=0;$i<$Reflector->NodeCount();$i++) { for ($i=0;$i<$Reflector->NodeCount();$i++) {
if ($odd == "#FFFFFF") { $odd = "#F1FAFA"; } else { $odd = "#FFFFFF"; } if ($odd == "#FFFFFF") { $odd = "#F1FAFA"; } else { $odd = "#FFFFFF"; }
echo ' echo '
<tr height="30" bgcolor="'.$odd.'" onMouseOver="this.bgColor=\'#FFFFCA\';" onMouseOut="this.bgColor=\''.$odd.'\';"> <tr height="30" bgcolor="'.$odd.'" onMouseOver="this.bgColor=\'#FFFFCA\';" onMouseOut="this.bgColor=\''.$odd.'\';">
<td align="center">'.($i+1).'</td> <td align="center">'.($i+1).'</td>
@ -36,7 +36,7 @@ for ($i=0;$i<$Reflector->NodeCount();$i++) {
<td><a href="http://www.aprs.fi/'.$Reflector->Nodes[$i]->GetCallSign(); <td><a href="http://www.aprs.fi/'.$Reflector->Nodes[$i]->GetCallSign();
if ($Reflector->Nodes[$i]->GetSuffix() != "") echo '-'.$Reflector->Nodes[$i]->GetSuffix(); if ($Reflector->Nodes[$i]->GetSuffix() != "") echo '-'.$Reflector->Nodes[$i]->GetSuffix();
echo '" class="pl" target="_blank">'.$Reflector->Nodes[$i]->GetCallSign(); echo '" class="pl" target="_blank">'.$Reflector->Nodes[$i]->GetCallSign();
if ($Reflector->Nodes[$i]->GetSuffix() != "") { echo '-'.$Reflector->Nodes[$i]->GetSuffix(); } if ($Reflector->Nodes[$i]->GetSuffix() != "") { echo '-'.$Reflector->Nodes[$i]->GetSuffix(); }
echo '</a></td> echo '</a></td>
<td>'; <td>';
if (($Reflector->Nodes[$i]->GetPrefix() == 'REF') || ($Reflector->Nodes[$i]->GetPrefix() == 'XRF')) { if (($Reflector->Nodes[$i]->GetPrefix() == 'REF') || ($Reflector->Nodes[$i]->GetPrefix() == 'XRF')) {
@ -52,7 +52,7 @@ for ($i=0;$i<$Reflector->NodeCount();$i++) {
case 'C' : echo '2m'; break; case 'C' : echo '2m'; break;
case 'D' : echo 'Dongle'; break; case 'D' : echo 'Dongle'; break;
case 'G' : echo 'Internet-Gateway'; break; case 'G' : echo 'Internet-Gateway'; break;
default : default : echo '';
} }
} }
echo '</td> echo '</td>
@ -79,6 +79,6 @@ for ($i=0;$i<$Reflector->NodeCount();$i++) {
if ($i == $PageOptions['RepeatersPage']['LimitTo']) { $i = $Reflector->NodeCount()+1; } if ($i == $PageOptions['RepeatersPage']['LimitTo']) { $i = $Reflector->NodeCount()+1; }
} }
?> ?>
</table> </table>