mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Added QSO-Count for SATs (PHP-Part)
This commit is contained in:
@@ -189,6 +189,21 @@ class Statistics extends CI_Controller {
|
||||
$this->load->view('statistics/uniquetable', $total_qsos);
|
||||
}
|
||||
|
||||
public function get_total_sat_qsos() {
|
||||
$this->load->model('stats');
|
||||
|
||||
$totalqsos = array();
|
||||
|
||||
$result = $this->stats->total_sat_qsos();
|
||||
$total_qsos['qsoarray'] = $result['qsoView'];
|
||||
$total_qsos['sattotal'] = $result['sattotal'];
|
||||
$total_qsos['modetotal'] = $result['modetotal'];
|
||||
$total_qsos['modes'] = $result['modes'];
|
||||
$total_qsos['sats'] = $this->stats->get_sats();
|
||||
|
||||
$this->load->view('statistics/satqsotable', $total_qsos);
|
||||
}
|
||||
|
||||
public function get_total_qsos() {
|
||||
$this->load->model('stats');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user