Merge pull request #2252 from int2001/dcl_frontend

DCL Connector
This commit is contained in:
Joerg (DJ7NT)
2025-09-06 12:34:28 +02:00
committed by GitHub
30 changed files with 989 additions and 25 deletions

View File

@@ -12,6 +12,7 @@ class Genfunctions
(($postdata['qrz'] ?? '') != '') ||
(($postdata['lotw'] ?? '') != '') ||
(($postdata['qsl'] ?? '') != '') ||
(($postdata['dcl'] ?? '') != '') ||
(($postdata['eqsl'] ?? '') != '') ) {
$sql .= ' and (';
if (($postdata['qsl'] ?? '') != '') {
@@ -29,6 +30,9 @@ class Genfunctions
if (($postdata['clublog'] ?? '') != '') {
array_push($qsl, "COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y'");
}
if (($postdata['dcl'] ?? '') != '') {
array_push($qsl, "COL_DCL_QSL_RCVD = 'Y'");
}
if (count($qsl) > 0) {
$sql .= implode(' or ', $qsl);
} else {
@@ -68,6 +72,9 @@ class Genfunctions
if (($postdata['eqsl'] ?? '')!= '' ) {
$qsl .= "E";
}
if (($postdata['dcl'] ?? '')!= '' ) {
$qsl .= "D";
}
if (($postdata['clublog'] ?? '')!= '' ) {
$qsl .= "C";
}