MMDVMHost-Dashboard/include/lh.php

69 lines
2 KiB
PHP
Raw Normal View History

2016-04-30 15:38:12 +02:00
<?php
2016-06-24 22:12:47 +02:00
$totalLH = count($lastHeard);
2016-04-30 15:38:12 +02:00
?>
<div class="panel panel-default">
<!-- Standard-Panel-Inhalt -->
2016-06-24 22:12:47 +02:00
<div class="panel-heading">Last Heard List of today's <?php echo $totalLH; ?> callsigns.</div>
2016-04-30 15:38:12 +02:00
<!-- Tabelle -->
2016-06-23 21:18:36 +02:00
<div class="table-responsive">
2016-06-25 00:08:42 +02:00
<table id="lastHeard" class="table table-condensed table-striped table-hover">
2016-06-23 21:18:36 +02:00
<thead>
2016-04-30 15:38:12 +02:00
<tr>
2016-05-02 13:59:00 +02:00
<th>Time (UTC)</th>
2016-04-30 15:38:12 +02:00
<th>Mode</th>
<th>Callsign</th>
<?php
if (defined("ENABLEXTDLOOKUP")) {
?>
<th>Name</th>
<?php
}
?>
2016-04-30 15:38:12 +02:00
<th>DSTAR-ID</th>
<th>Target</th>
2016-04-30 19:33:41 +02:00
<th>Source</th>
2016-05-09 21:02:41 +02:00
<th>Dur (s)</th>
2016-05-03 21:36:47 +02:00
<th>Loss</th>
<th>BER</th>
2016-04-30 15:38:12 +02:00
</tr>
2016-06-23 21:18:36 +02:00
</thead>
<tbody>
2016-04-30 15:38:12 +02:00
<?php
2016-06-24 22:12:47 +02:00
for ($i = 0; ($i < $totalLH); $i++) {
$listElem = $lastHeard[$i];
2016-04-30 15:38:12 +02:00
echo"<tr>";
2016-09-14 22:12:08 +02:00
echo"<td nowrap>$listElem[0]</td>";
echo"<td nowrap>$listElem[1]</td>";
if (constant("SHOWQRZ") && $listElem[2] !== "??????????" && !is_numeric($listElem[2])) {
echo"<td nowrap><a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","&Oslash;",$listElem[2])."</a></td>";
} else {
echo"<td nowrap><a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?usrid=$listElem[2]\">".$listElem[2]."</td>";
}
if (defined("ENABLEXTDLOOKUP")) {
2016-09-14 22:12:08 +02:00
echo "<td nowrap>".getName($listElem[2])."</td>";
}
2016-09-14 22:12:08 +02:00
echo"<td nowrap>$listElem[3]</td>";
echo"<td nowrap>$listElem[4]</td>";
2016-06-23 21:14:54 +02:00
if ($listElem[5] == "RF"){
2016-09-14 22:12:08 +02:00
echo "<td nowrap><span class=\"label label-success\">RF</span></td>";
2016-06-23 21:14:54 +02:00
}else{
2016-09-14 22:12:08 +02:00
echo"<td nowrap>$listElem[5]</td>";
2016-06-23 21:14:54 +02:00
}
2016-05-04 14:59:45 +02:00
if ($listElem[6] == null) {
2016-09-14 22:12:08 +02:00
echo'<td nowrap>transmitting</td><td></td><td></td>';
} else if ($listElem[6] == "SMS") {
2016-09-16 14:42:42 +02:00
echo'<td nowrap>sending or receiving SMS</td><td></td><td></td>';
} else {
2016-09-14 22:12:08 +02:00
echo"<td nowrap>$listElem[6]</td>";
echo"<td nowrap>$listElem[7]</td>";
echo"<td nowrap>$listElem[8]</td>";
2016-05-04 14:59:45 +02:00
}
echo"</tr>\n";
2016-04-30 15:38:12 +02:00
}
?>
2016-06-23 21:18:36 +02:00
</tbody>
2016-04-30 15:38:12 +02:00
</table>
2016-06-23 21:18:36 +02:00
</div>
2016-05-05 21:21:55 +02:00
</div>
2016-06-24 23:34:16 +02:00