[eQSL] Added some result from download CRON job

pull/2112/head
Andreas 2023-05-06 11:40:55 +02:00
rodzic 86312d16aa
commit 2b68c7820f
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -594,6 +594,16 @@ class eqsl extends CI_Controller {
$eqsl_results[] = $this->eqslimporter->fetch($eqsl_password);
}
echo 'Result from eQSL download:<br /><br />';
foreach ($eqsl_results as $result) {
foreach ($result as $r) {
echo $r->name . '<br />';
echo $r->adif_file . '<br />';
echo $r->qsos . '<br />';
echo $r->status . '<br /><br />';
}
}
function uploadUser($userid, $username, $password) {