Skip to content

Commit

Permalink
2.6.13
Browse files Browse the repository at this point in the history
  • Loading branch information
magicbug authored May 21, 2024
2 parents 9ff7e81 + 2e6b9d2 commit d41e524
Show file tree
Hide file tree
Showing 63 changed files with 2,163 additions and 1,767 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ sync.sh
*.swp
.env
/node_modules
/.vs
2 changes: 1 addition & 1 deletion application/config/migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
|
*/

$config['migration_version'] = 182;
$config['migration_version'] = 184;

/*
|--------------------------------------------------------------------------
Expand Down
18 changes: 18 additions & 0 deletions application/controllers/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,24 @@ public function index()
}
}

public function logbook_display_component() {
$this->load->model('user_model');

if ($this->user_model->validate_session() == 0) {
// User is not logged in
} else {
$this->load->model('logbook_model');
$this->load->model('logbooks_model');
}

// Get Logbook Locations
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));

// Get the last 20 QSOs
$data['last_five_qsos'] = $this->logbook_model->get_last_qsos('20', $logbooks_locations_array);
$this->load->view('components/dashboard_logbook_table', $data);
}

function radio_display_component()
{
$this->load->model('cat');
Expand Down
Loading

0 comments on commit d41e524

Please sign in to comment.