|
|
|
|
@ -26,7 +26,7 @@ for ($i=0;$i<$Reflector->StationCount();$i++) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '</td>
|
|
|
|
|
<td align="center" width="50">';
|
|
|
|
|
<td align="center" width="60">';
|
|
|
|
|
|
|
|
|
|
if (file_exists("./img/flags/".$Reflector->GetFlag($Reflector->Stations[$i]->GetCallSign()).".png")) {
|
|
|
|
|
echo '<img src="./img/flags/'.$Reflector->GetFlag($Reflector->Stations[$i]->GetCallSign()).'.png" height="15" />';
|
|
|
|
|
@ -35,7 +35,7 @@ for ($i=0;$i<$Reflector->StationCount();$i++) {
|
|
|
|
|
<td width="75"><a href="https://www.qrz.com/db/'.$Reflector->Stations[$i]->GetCallsignOnly().'" class="pl" target="_blank">'.$Reflector->Stations[$i]->GetCallsignOnly().'</a></td>
|
|
|
|
|
<td width="60">'.$Reflector->Stations[$i]->GetSuffix().'</td>
|
|
|
|
|
<td width="50" align="center"><a href="http://www.aprs.fi/'.$Reflector->Stations[$i]->GetCallsignOnly().'" class="pl" target="_blank"><img src="./img/sat.png" /></a></td>
|
|
|
|
|
<td width="150">'.$Reflector->Stations[$i]->GetVia();
|
|
|
|
|
<td width="127">'.$Reflector->Stations[$i]->GetVia();
|
|
|
|
|
if ($Reflector->Stations[$i]->GetPeer() != 'XLX'.$ServiceName) {
|
|
|
|
|
echo ' / '.$Reflector->Stations[$i]->GetPeer();
|
|
|
|
|
}
|
|
|
|
|
@ -79,11 +79,22 @@ for ($i=0;$i<count($Modules);$i++) {
|
|
|
|
|
|
|
|
|
|
<table width="100" border="0" style="padding:0px;margin:0px;">';
|
|
|
|
|
$odd = "";
|
|
|
|
|
|
|
|
|
|
$UserCheckedArray = array();
|
|
|
|
|
|
|
|
|
|
for ($j=0;$j<count($Users);$j++) {
|
|
|
|
|
if ($odd == "#FFFFFF") { $odd = "#F1FAFA"; } else { $odd = "#FFFFFF"; }
|
|
|
|
|
if (in_array($Users[$j], $UserCheckedArray)) {
|
|
|
|
|
$CurrentPositions = array_keys($UserCheckedArray,$Users[$j]);
|
|
|
|
|
$Displayname = $Users[$j].'-'.$Reflector->GetSuffixOfRepeater($Users[$j], $Modules[$i], max($CurrentPositions)+1);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$Displayname = $Users[$j].'-'.$Reflector->GetSuffixOfRepeater($Users[$j], $Modules[$i]);
|
|
|
|
|
}
|
|
|
|
|
echo '<tr height="25" bgcolor="'.$odd.'" onMouseOver="this.bgColor=\'#FFFFCA\';" onMouseOut="this.bgColor=\''.$odd.'\';">
|
|
|
|
|
<td valign="top" style="border-bottom:1px #C1DAD7 solid;"><a href="http://www.aprs.fi/'.$Users[$j].'-'.$Reflector->GetSuffixOfRepeater($Users[$j]).'" class="pl" target="_blank">'.$Users[$j].'-'.$Reflector->GetSuffixOfRepeater($Users[$j]).'</a> </td>
|
|
|
|
|
<td valign="top" style="border-bottom:1px #C1DAD7 solid;"><a href="http://www.aprs.fi/'.$Displayname.'" class="pl" target="_blank">'.$Displayname.'</a> </td>
|
|
|
|
|
</tr>';
|
|
|
|
|
$UserCheckedArray[] = $Users[$j];
|
|
|
|
|
}
|
|
|
|
|
echo '
|
|
|
|
|
</table>
|
|
|
|
|
|