[Advanced Logbook] Added QSL image popup and indicator

This commit is contained in:
Andreas
2023-06-30 23:36:35 +02:00
parent cfbe4971d0
commit 38dee35937
6 changed files with 89 additions and 3 deletions

View File

@@ -174,6 +174,13 @@ class Qsl extends CI_Controller {
echo json_encode($result);
}
function viewQsl() {
$cleanid = $this->security->xss_clean($this->input->post('id'));
$this->load->model('Qsl_model');
$data['qslimages'] = $this->Qsl_model->getQslForQsoId($cleanid);
$this->load->view('qslcard/qslcarousel', $data);
}
}
// Functions for storage, these need shifted to a libary to use across Cloudlog