Show info on modes in repeater-info only if mode is enabled
This commit is contained in:
parent
302a7ae41f
commit
de526e6127
2 changed files with 25 additions and 5 deletions
|
@ -6,18 +6,38 @@
|
||||||
<table class="table repeaterinfo">
|
<table class="table repeaterinfo">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Current Mode</th>
|
<th>Current Mode</th>
|
||||||
|
<?php
|
||||||
|
if (getEnabled("D-Star", $mmdvmconfigs) == 1) {
|
||||||
|
?>
|
||||||
<th>D-Star linked to</th>
|
<th>D-Star linked to</th>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
if (getEnabled("System Fusion", $mmdvmconfigs) == 1) {
|
||||||
|
?>
|
||||||
<th>YSF linked to</th>
|
<th>YSF linked to</th>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
if (getEnabled("DMR", $mmdvmconfigs) == 1) {
|
||||||
|
?>
|
||||||
<th>DMR TS1 last linked to</th>
|
<th>DMR TS1 last linked to</th>
|
||||||
<th>DMR TS2 last linked to</th>
|
<th>DMR TS2 last linked to</th>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
echo"<tr>";
|
echo"<tr>";
|
||||||
echo"<td id=\"mode\">".getActualMode($lastHeard, $mmdvmconfigs)."</td>";
|
echo"<td id=\"mode\">".getActualMode($lastHeard, $mmdvmconfigs)."</td>";
|
||||||
|
if (getEnabled("D-Star", $mmdvmconfigs) == 1) {
|
||||||
echo"<td>".getActualLink($reverseLogLinesMMDVM, "D-Star")."</td>";
|
echo"<td>".getActualLink($reverseLogLinesMMDVM, "D-Star")."</td>";
|
||||||
|
}
|
||||||
|
if (getEnabled("System Fusion", $mmdvmconfigs) == 1) {
|
||||||
echo"<td>".getYSFReflectorById(getActualLink($reverseLogLinesYSFGateway, "YSF"), $activeYSFReflectors)."</td>";
|
echo"<td>".getYSFReflectorById(getActualLink($reverseLogLinesYSFGateway, "YSF"), $activeYSFReflectors)."</td>";
|
||||||
|
}
|
||||||
|
if (getEnabled("DMR", $mmdvmconfigs) == 1) {
|
||||||
echo"<td>".getActualLink($reverseLogLinesMMDVM, "DMR Slot 1")."</td>";
|
echo"<td>".getActualLink($reverseLogLinesMMDVM, "DMR Slot 1")."</td>";
|
||||||
echo"<td>".getActualLink($reverseLogLinesMMDVM, "DMR Slot 2")."/". getActualReflector($reverseLogLinesMMDVM, "DMR Slot 2") ."</td>";
|
echo"<td>".getActualLink($reverseLogLinesMMDVM, "DMR Slot 2")."/". getActualReflector($reverseLogLinesMMDVM, "DMR Slot 2") ."</td>";
|
||||||
|
}
|
||||||
echo"</tr>\n";
|
echo"</tr>\n";
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<?php
|
<?php
|
||||||
define("VERSION", "20170113-1");
|
define("VERSION", "20170120-1");
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue