Add QSO end date expiry to dashbaord banner as well

This commit is contained in:
phl0
2025-10-24 11:23:58 +02:00
parent eb268b0260
commit 2fda94357e
3 changed files with 36 additions and 7 deletions

View File

@@ -19,6 +19,8 @@ class Dashboard extends CI_Controller {
$current_date = date('Y-m-d H:i:s');
$data['lotw_cert_expired'] = $this->Lotw_model->lotw_cert_expired($this->session->userdata('user_id'), $current_date);
$data['lotw_cert_expiring'] = $this->Lotw_model->lotw_cert_expiring($this->session->userdata('user_id'), $current_date);
$data['lotw_cert_qsoenddate_expired'] = $this->Lotw_model->lotw_cert_qsoenddate_expired($this->session->userdata('user_id'), $current_date);
$data['lotw_cert_qsoenddate_expiring'] = $this->Lotw_model->lotw_cert_qsoenddate_expiring($this->session->userdata('user_id'), $current_date);
$this->load->model('logbooks_model');