commit
7d97b6b670
5 changed files with 24 additions and 21 deletions
4
ajax.php
4
ajax.php
|
@ -32,7 +32,7 @@ if ($_GET['section'] == "localTx") {
|
||||||
$listElem[3] = getName($listElem[2]);
|
$listElem[3] = getName($listElem[2]);
|
||||||
if ($listElem[2] !== "??????????") {
|
if ($listElem[2] !== "??????????") {
|
||||||
if (!is_numeric($listElem[2])) {
|
if (!is_numeric($listElem[2])) {
|
||||||
if (constant("SHOWQRZ")) {
|
if (defined("SHOWQRZ")) {
|
||||||
$listElem[2] = "<a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a>";
|
$listElem[2] = "<a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a>";
|
||||||
} else {
|
} else {
|
||||||
$listElem[2] = "<a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</a>";
|
$listElem[2] = "<a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</a>";
|
||||||
|
@ -47,7 +47,7 @@ if ($_GET['section'] == "localTx") {
|
||||||
if ($listElem[5] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25")) {
|
if ($listElem[5] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25")) {
|
||||||
if ($listElem[2] !== "??????????") {
|
if ($listElem[2] !== "??????????") {
|
||||||
if (!is_numeric($listElem[2])) {
|
if (!is_numeric($listElem[2])) {
|
||||||
if (constant("SHOWQRZ")) {
|
if (defined("SHOWQRZ")) {
|
||||||
$listElem[2] = "<a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a>";
|
$listElem[2] = "<a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a>";
|
||||||
} else {
|
} else {
|
||||||
$listElem[2] = "<a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</a>";
|
$listElem[2] = "<a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</a>";
|
||||||
|
|
|
@ -25,8 +25,11 @@ function getMMDVMHostFileVersion() {
|
||||||
function getFirmwareVersion() {
|
function getFirmwareVersion() {
|
||||||
$logPath = MMDVMLOGPATH."/".MMDVMLOGPREFIX."-".date("Y-m-d").".log";
|
$logPath = MMDVMLOGPATH."/".MMDVMLOGPREFIX."-".date("Y-m-d").".log";
|
||||||
$logLines = explode("\n", `grep "MMDVM protocol version" $logPath`);
|
$logLines = explode("\n", `grep "MMDVM protocol version" $logPath`);
|
||||||
|
$firmware = "n/a";
|
||||||
|
if (count($logLines) >= 2) {
|
||||||
$firmware = substr($logLines[count($logLines)-2], strpos($logLines[count($logLines)-2], "description")+13, strlen($logLines[count($logLines)-2])-strpos($logLines[count($logLines)-2], "description")+13);
|
$firmware = substr($logLines[count($logLines)-2], strpos($logLines[count($logLines)-2], "description")+13, strlen($logLines[count($logLines)-2])-strpos($logLines[count($logLines)-2], "description")+13);
|
||||||
if (strlen($firmware) > 0) {
|
}
|
||||||
|
if ($firmware != "n/a") {
|
||||||
$fp = fopen('/tmp/MMDVMFirmware.txt', 'w');
|
$fp = fopen('/tmp/MMDVMFirmware.txt', 'w');
|
||||||
fwrite($fp, $firmware);
|
fwrite($fp, $firmware);
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
|
@ -45,26 +48,26 @@ function setDMRNetwork($network) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDMRNetwork() {
|
function getDMRNetwork() {
|
||||||
if (file_exists('config/DMRNetwork.txt')) {
|
$filename = 'config/DMRNetwork.txt';
|
||||||
$fp = fopen('config/DMRNetwork.txt', 'r');
|
$network = '';
|
||||||
$network = fread($fp, filesize("config/DMRNetwork.txt"));
|
if (file_exists($filename)) {
|
||||||
|
$fp = fopen($filename, 'r');
|
||||||
|
$network = fread($fp, filesize($filename));
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
return $network;
|
|
||||||
} else {
|
|
||||||
return "";
|
|
||||||
}
|
}
|
||||||
|
return $network;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDMRNetwork2() {
|
function getDMRNetwork2() {
|
||||||
if (file_exists('../config/DMRNetwork.txt')) {
|
$filename = '../config/DMRNetwork.txt';
|
||||||
$fp = fopen('../config/DMRNetwork.txt', 'r');
|
$network = '';
|
||||||
$network = fread($fp, filesize("../config/DMRNetwork.txt"));
|
if (file_exists($filename)) {
|
||||||
|
$fp = fopen($filename, 'r');
|
||||||
|
$network = fread($fp, filesize($filename));
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
return $network;
|
|
||||||
} else {
|
|
||||||
return "";
|
|
||||||
}
|
}
|
||||||
|
return $network;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDMRMasterState() {
|
function getDMRMasterState() {
|
||||||
|
@ -445,7 +448,7 @@ function getLastHeard($logLines, $onlyLast) {
|
||||||
}
|
}
|
||||||
if ($listElem[2] !== "??????????") {
|
if ($listElem[2] !== "??????????") {
|
||||||
if (!is_numeric($listElem[2])) {
|
if (!is_numeric($listElem[2])) {
|
||||||
if (constant("SHOWQRZ")) {
|
if (defined("SHOWQRZ")) {
|
||||||
$listElem[2] = "<a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a>";
|
$listElem[2] = "<a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a>";
|
||||||
} else {
|
} else {
|
||||||
$listElem[2] = "<a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</a>";
|
$listElem[2] = "<a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</a>";
|
||||||
|
|
|
@ -36,7 +36,7 @@ for ($i = 0; ($i < $totalLH); $i++) {
|
||||||
echo"<td nowrap>$listElem[1]</td>";
|
echo"<td nowrap>$listElem[1]</td>";
|
||||||
if ($listElem[2] !== "??????????") {
|
if ($listElem[2] !== "??????????") {
|
||||||
if (!is_numeric($listElem[2])) {
|
if (!is_numeric($listElem[2])) {
|
||||||
if (constant("SHOWQRZ")) {
|
if (defined("SHOWQRZ")) {
|
||||||
echo"<td nowrap><a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a></td>";
|
echo"<td nowrap><a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a></td>";
|
||||||
} else {
|
} else {
|
||||||
echo"<td nowrap><a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</td>";
|
echo"<td nowrap><a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</td>";
|
||||||
|
|
|
@ -41,7 +41,7 @@ for ($i = 0; $i < count($localTXList); $i++) {
|
||||||
echo"<td nowrap>$listElem[1]</td>";
|
echo"<td nowrap>$listElem[1]</td>";
|
||||||
if ($listElem[2] !== "??????????") {
|
if ($listElem[2] !== "??????????") {
|
||||||
if (!is_numeric($listElem[2])) {
|
if (!is_numeric($listElem[2])) {
|
||||||
if (constant("SHOWQRZ")) {
|
if (defined("SHOWQRZ")) {
|
||||||
echo"<td nowrap><a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a></td>";
|
echo"<td nowrap><a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a></td>";
|
||||||
} else {
|
} else {
|
||||||
echo"<td nowrap><a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</td>";
|
echo"<td nowrap><a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</td>";
|
||||||
|
|
|
@ -27,7 +27,7 @@ foreach ($lastHeard as $listElem) {
|
||||||
echo"<td nowrap>$listElem[1]</td>";
|
echo"<td nowrap>$listElem[1]</td>";
|
||||||
/*if ($listElem[2] !== "??????????") {
|
/*if ($listElem[2] !== "??????????") {
|
||||||
if (!is_numeric($listElem[2])) {
|
if (!is_numeric($listElem[2])) {
|
||||||
if (constant("SHOWQRZ")) {
|
if (defined("SHOWQRZ")) {
|
||||||
echo"<td nowrap><a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a></td>";
|
echo"<td nowrap><a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a></td>";
|
||||||
} else {
|
} else {
|
||||||
echo"<td nowrap><a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</td>";
|
echo"<td nowrap><a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?callsign=$listElem[2]\">".$listElem[2]."</td>";
|
||||||
|
|
Loading…
Reference in a new issue