Add display of hams of note

This commit is contained in:
phl0
2025-03-21 11:01:54 +01:00
parent 00e436157a
commit 34d60c9e41
9 changed files with 152 additions and 1 deletions

View File

@@ -489,6 +489,15 @@ class Update extends CI_Controller {
$this->load->view('interface_assets/footer');
}
public function update_hamsofnote() {
$this->load->model('Update_model');
$bodyData['satupdates'] = $this->Update_model->update_hams_of_note();
$data['page_title'] = __("Update of Hams of Note");
$this->load->view('interface_assets/header', $data);
$this->load->view('update/hamsofnote', $bodyData);
$this->load->view('interface_assets/footer');
}
function version_check() {
// set the last run in cron table for the correct cron id
$this->load->model('cron_model');