working on sfle

This commit is contained in:
HB9HIL
2023-10-25 09:29:16 +02:00
parent 49143eec40
commit 0364df723a
5 changed files with 338 additions and 9 deletions

View File

@@ -6,13 +6,6 @@ class SimpleFLE extends CI_Controller {
$this->load->model('user_model');
if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
$this->load->model('modes');
$this->load->model('logbook_model');
$this->load->model('stations');
$this->load->model('bands');
$data['station_profile'] = $this->stations->all_of_user(); // Used in the view for station location select
$data['page_title'] = "Simple Fast Log Entry";
$this->load->view('interface_assets/header', $data);