1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2024-09-19 19:46:34 -04:00
xlxd/dashboard/pgs/peers.php
2016-02-17 14:14:12 +01:00

36 lines
1.2 KiB
PHP

<table class="listingtable">
<tr>
<th width="25">#</th>
<th width="100">XLX Peer</th>
<th width="154">Last Heard</th>
<th width="156">Linked for</th>
<th width="90">Protocol</th>
<th width="67">Module</th>
<th width="130">IP</th>
</tr>
<?php
$odd = "";
$Reflector->LoadFlags();
for ($i=0;$i<$Reflector->PeerCount();$i++) {
if ($odd == "#FFFFFF") { $odd = "#F1FAFA"; } else { $odd = "#FFFFFF"; }
echo '
<tr height="30" bgcolor="'.$odd.'" onMouseOver="this.bgColor=\'#FFFFCA\';" onMouseOut="this.bgColor=\''.$odd.'\';">
<td align="center">'.($i+1).'</td>
<td>'.$Reflector->Peers[$i]->GetCallSign().'</td>
<td>'.date("d.m.Y H:i", $Reflector->Peers[$i]->GetLastHeardTime()).'</td>
<td>'.FormatSeconds(time()-$Reflector->Peers[$i]->GetConnectTime()).' s</td>
<td align="center">'.$Reflector->Peers[$i]->GetProtocol().'</td>
<td align="center">'.$Reflector->Peers[$i]->GetLinkedModule().'</td>
<td><a href="http://'.$Reflector->Peers[$i]->GetIP().'" target="_blank" style="text-decoration:none;color:#000000;">'.$Reflector->Peers[$i]->GetIP().'</a></td>
</tr>';
if ($i == 99) { $i = $Reflector->PeerCount()+1; }
}
?>
</table>