2016-05-11 23:16:05 +02:00
|
|
|
<?php
|
|
|
|
|
2016-06-24 21:37:52 +02:00
|
|
|
$localTXList = getHeardList($reverseLogLinesMMDVM);
|
2016-06-03 21:27:16 +02:00
|
|
|
//array_multisort($localTXList,SORT_DESC);
|
2016-05-11 23:16:05 +02:00
|
|
|
|
|
|
|
?>
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<!-- Standard-Panel-Inhalt -->
|
2016-06-27 08:44:00 +02:00
|
|
|
<div class="panel-heading">Today's local transmissions</div>
|
2016-05-11 23:16:05 +02:00
|
|
|
<!-- Tabelle -->
|
2016-06-24 19:37:41 +02:00
|
|
|
<div class="table-responsive">
|
2016-06-25 00:08:30 +02:00
|
|
|
<table id="localTx" class="table table-condensed table-striped table-hover">
|
2016-06-24 21:37:52 +02:00
|
|
|
<thead>
|
2016-05-11 23:16:05 +02:00
|
|
|
<tr>
|
|
|
|
<th>Time (UTC)</th>
|
|
|
|
<th>Mode</th>
|
|
|
|
<th>Callsign</th>
|
2016-07-15 14:09:10 +02:00
|
|
|
<?php
|
|
|
|
if (defined("ENABLEXTDLOOKUP")) {
|
|
|
|
?>
|
|
|
|
<th>Name</th>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2016-05-11 23:16:05 +02:00
|
|
|
<th>DSTAR-ID</th>
|
|
|
|
<th>Target</th>
|
|
|
|
<th>Source</th>
|
|
|
|
<th>Dur (s)</th>
|
|
|
|
<th>Loss</th>
|
|
|
|
<th>BER</th>
|
|
|
|
</tr>
|
2016-06-24 21:37:52 +02:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2016-05-11 23:16:05 +02:00
|
|
|
<?php
|
|
|
|
for ($i = 0; $i < count($localTXList); $i++) {
|
2016-06-24 19:37:41 +02:00
|
|
|
$listElem = $localTXList[$i];
|
2016-05-11 23:16:05 +02:00
|
|
|
if ($listElem[5] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF")) {
|
|
|
|
echo"<tr>";
|
2016-06-24 21:37:52 +02:00
|
|
|
echo"<td nowrap>$listElem[0]</td>";
|
|
|
|
echo"<td nowrap>$listElem[1]</td>";
|
|
|
|
echo"<td nowrap>$listElem[2]</td>";
|
2016-07-15 14:09:10 +02:00
|
|
|
if (defined("ENABLEXTDLOOKUP")) {
|
|
|
|
echo "<td class=\"nowrap\">".getName($listElem[2])."</td>";
|
|
|
|
}
|
2016-06-24 21:37:52 +02:00
|
|
|
echo"<td nowrap>$listElem[3]</td>";
|
|
|
|
echo"<td nowrap>$listElem[4]</td>";
|
|
|
|
echo"<td nowrap>$listElem[5]</td>";
|
2016-05-11 23:16:05 +02:00
|
|
|
if ($listElem[6] == null) {
|
2016-06-26 13:03:26 +02:00
|
|
|
echo'<td nowrap>in TX</td><td></td><td></td>';
|
2016-05-19 22:24:59 +02:00
|
|
|
} else if ($listElem[6] == "SMS") {
|
2016-06-26 13:03:26 +02:00
|
|
|
echo'<td nowrap>sending or receiving SMS</td><td></td><td></td>';
|
2016-05-11 23:16:05 +02:00
|
|
|
} else {
|
2016-06-24 21:37:52 +02:00
|
|
|
echo"<td nowrap>$listElem[6]</td>";
|
|
|
|
echo"<td nowrap>$listElem[7]</td>";
|
|
|
|
echo"<td nowrap>$listElem[8]</td>";
|
2016-05-11 23:16:05 +02:00
|
|
|
}
|
|
|
|
echo"</tr>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
2016-06-24 21:37:52 +02:00
|
|
|
</tbody>
|
2016-05-11 23:16:05 +02:00
|
|
|
</table>
|
2016-06-24 19:37:41 +02:00
|
|
|
</div>
|
2016-05-11 23:16:05 +02:00
|
|
|
</div>
|
2016-06-24 23:34:38 +02:00
|
|
|
|