load->model('user_model'); if($this->user_model->validate_session() == 0) { // user is not logged in redirect('user/login'); } $this->load->model('stations'); $this->load->model('logbook_model'); $this->load->library('pagination'); $config['base_url'] = base_url().'index.php/logbook/index/'; $config['total_rows'] = $this->logbook_model->total_qsos(); $config['per_page'] = '25'; $config['num_links'] = 6; $config['full_tag_open'] = ''; $config['full_tag_close'] = ''; $config['cur_tag_open'] = ''; $config['cur_tag_close'] = ''; $this->pagination->initialize($config); //load the model and get results $data['results'] = $this->logbook_model->get_qsos($config['per_page'],$this->uri->segment(3)); $data['user_map_custom'] = $this->optionslib->get_map_custom(); if(!$data['results']) { $this->session->set_flashdata('notice', __("No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:") . ' ' . __("Station Logbooks") . ''); } // Calculate Lat/Lng from Locator to use on Maps if($this->session->userdata('user_locator')) { if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); } $qra_position = $this->qra->qra2latlong($this->session->userdata('user_locator')); if (isset($qra_position[0]) and isset($qra_position[1])) { $data['qra'] = "set"; $data['qra_lat'] = $qra_position[0]; $data['qra_lng'] = $qra_position[1]; } else { $data['qra'] = "none"; } } else { $data['qra'] = "none"; } // load the view $data['page_title'] = __("Logbook"); $this->load->view('interface_assets/header', $data); $this->load->view('view_log/index'); $this->load->view('interface_assets/footer'); } function jsonentity($adif) { $this->load->model('user_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } $return['dxcc'] = $this->getentity($adif); header('Content-Type: application/json'); echo json_encode($return, JSON_PRETTY_PRINT); } function json($tempcallsign, $tempband, $tempmode, $tempstation_id = null, $date = "", $count = 5) { session_write_close(); // Normalize the date only if it's not empty if (!empty($date)) { // Characters '/' and ',' are not URL safe, so we replace // them with '_' and '%'. Switch them back here. if (strpos($date, '_') !== false) { $date = str_replace('_', '/', $date); } if (strpos($date, '%') !== false) { $date = str_replace('%', ',', $date); } // Get user-preferred date format if ($this->session->userdata('user_date_format')) { $date_format = $this->session->userdata('user_date_format'); } else { $date_format = $this->config->item('qso_date_format'); } $date = urldecode($date); $dt = DateTime::createFromFormat($date_format, $date); if ($dt !== false) { $date = $dt->format('Y-m-d'); // or any normalized format } else { // Invalid date for the expected format, handle gracefully $date = null; } } // Cleaning for security purposes $callsign = $this->security->xss_clean($tempcallsign); $band = $this->security->xss_clean($tempband); $mode = $this->security->xss_clean($tempmode); $station_id = $this->security->xss_clean($tempstation_id); $date = $this->security->xss_clean($date); $this->load->model('user_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } // Convert - in Callsign to / Used for URL processing $callsign = str_replace("-","/",$callsign); $callsign = str_replace("Ø","0",$callsign); // Check if callsign is an LoTW User // Check Database for all other data $this->load->model('logbook_model'); $lotw_days = $this->logbook_model->check_last_lotw($callsign); if ($lotw_days != null) { $lotw_member="active"; } else { $lotw_member="not found"; } $return = [ "callsign" => strtoupper($callsign), "dxcc" => false, "callsign_name" => "", "callsign_qra" => "", "callsign_distance" => 0, "callsign_qth" => "", "callsign_iota" => "", "callsign_state" => "", "callsign_us_county" => "", "callsign_ituz" => "", "callsign_cqz" => "", "qsl_manager" => "", "bearing" => "", "workedBefore" => false, "timesWorked" => 0, "lotw_member" => $lotw_member, "lotw_days" => $lotw_days, "image" => "", ]; $return['dxcc'] = $this->dxcheck($callsign,$date); $this->load->library('callbook'); $lookupcall = $this->callbook->get_plaincall($callsign); $callbook = $this->logbook_model->loadCallBook($callsign, $this->config->item('use_fullname')); $return['partial'] = $this->partial($lookupcall, $callbook, $callsign, $return['dxcc'], $lotw_days, $band, $count); if ($this->session->userdata('user_measurement_base') == NULL) { $measurement_base = $this->config->item('measurement_base'); } else { $measurement_base = $this->session->userdata('user_measurement_base'); } $return['callsign_name'] = $this->nval($callbook['name'] ?? '', $this->logbook_model->call_name($callsign)); $return['callsign_qra'] = $this->nval($callbook['gridsquare'] ?? '', $this->logbook_model->call_qra($callsign)); $return['callsign_geoloc'] = $callbook['geoloc'] ?? ''; $return['callsign_distance'] = $this->distance($return['callsign_qra'], $station_id); $return['callsign_qth'] = $this->nval($callbook['city'] ?? '', $this->logbook_model->call_qth($callsign)); $return['callsign_iota'] = $this->nval($callbook['iota'] ?? '', $this->logbook_model->call_iota($callsign)); $return['callsign_email'] = $this->nval($callbook['email'] ?? '', $this->logbook_model->call_email($callsign)); $return['qsl_manager'] = $this->nval($callbook['qslmgr'] ?? '', $this->logbook_model->call_qslvia($callsign)); $return['callsign_state'] = $this->nval($callbook['state'] ?? '', $this->logbook_model->call_state($callsign)); $return['callsign_us_county'] = $this->nval($callbook['us_county'] ?? '', $this->logbook_model->call_us_county($callsign)); $return['callsign_ituz'] = $this->nval($callbook['ituz'] ?? '', $this->logbook_model->call_ituzone($callsign)); $return['callsign_cqz'] = $this->nval($callbook['cqz'] ?? '', $this->logbook_model->call_cqzone($callsign)); $return['workedBefore'] = $this->worked_grid_before($return['callsign_qra'], $band, $mode); $return['confirmed'] = $this->confirmed_grid_before($return['callsign_qra'], $band, $mode); $return['timesWorked'] = $this->logbook_model->times_worked($lookupcall); if ($this->session->userdata('user_show_profile_image')) { if (isset($callbook) && isset($callbook['image'])) { if ($callbook['image'] == "") { $return['image'] = "n/a"; } else { $return['image'] = $callbook['image']; } } else { $return['image'] = "n/a"; } } if ($return['callsign_qra'] != "" || $return['callsign_qra'] != null) { $return['latlng'] = $this->qralatlng($return['callsign_qra']); $return['bearing'] = $this->bearing($return['callsign_qra'], $measurement_base, $station_id); } echo json_encode($return, JSON_PRETTY_PRINT); return; } // Returns $val2 first if it has value, even if it is null or empty string, if not return $val1. function nval($val1, $val2) { return (($val2 ?? "") === "" ? ($val1 ?? "") : ($val2 ?? "")); } function confirmed_grid_before($gridsquare, $band, $mode) { if (strlen($gridsquare) < 4) return false; $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $user_default_confirmation = $this->session->userdata('user_default_confirmation'); if(!empty($logbooks_locations_array)) { $extrawhere=''; if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Q') !== false) { $extrawhere="COL_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'L') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_LOTW_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'E') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_EQSL_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Z') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_QRZCOM_QSO_DOWNLOAD_STATUS='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'C') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_CLUBLOG_QSO_DOWNLOAD_STATUS='Y'"; } if($band == "SAT") { $this->db->where('COL_PROP_MODE', 'SAT'); if ($extrawhere != '') { $this->db->where('('.$extrawhere.')'); } else { $this->db->where("1=0"); } } else { $this->load->model('logbook_model'); $this->db->where('COL_MODE', $this->logbook_model->get_main_mode_from_mode($mode)); $this->db->where('COL_BAND', $band); $this->db->where('COL_PROP_MODE !=','SAT'); if ($extrawhere != '') { $this->db->where('('.$extrawhere.')'); } else { $this->db->where("1=0"); } } $this->db->where_in('station_id', $logbooks_locations_array); $this->db->like('SUBSTRING(COL_GRIDSQUARE, 1, 4)', substr($gridsquare, 0, 4)); $this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "desc"); $this->db->limit(1); $query = $this->db->get($this->config->item('table_name')); foreach ($query->result() as $workedBeforeRow) { return true; } } return false; } function worked_grid_before($gridsquare, $band, $mode) { if (strlen($gridsquare) < 4) return false; $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if(!empty($logbooks_locations_array)) { if($band == "SAT") { $this->db->where('COL_PROP_MODE', 'SAT'); } else { $this->db->where('COL_MODE', $this->logbook_model->get_main_mode_from_mode($mode)); $this->db->where('COL_BAND', $band); $this->db->where('COL_PROP_MODE !=','SAT'); } $this->db->where_in('station_id', $logbooks_locations_array); $this->db->like('SUBSTRING(COL_GRIDSQUARE, 1, 4)', substr($gridsquare, 0, 4)); $this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "desc"); $this->db->limit(1); $query = $this->db->get($this->config->item('table_name')); foreach ($query->result() as $workedBeforeRow) { return true; } } return false; } /* * Function: jsonlookupgrid * * Usage: Used to look up gridsquares when creating a QSO to check whether its needed or not * the $type variable is only used for satellites, set this to SAT. * */ function jsonlookupgrid($gridsquare, $type, $band, $mode) { session_write_close(); $return = [ "workedBefore" => false, "confirmed" => false, ]; $user_default_confirmation = $this->session->userdata('user_default_confirmation'); $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if($type == "SAT") { $this->db->where('COL_PROP_MODE', 'SAT'); } else { $this->load->model('logbook_model'); $this->db->where('COL_MODE', $this->logbook_model->get_main_mode_from_mode($mode)); $this->db->where('COL_BAND', $band); $this->db->where('COL_PROP_MODE !=','SAT'); } $this->db->where_in('station_id', $logbooks_locations_array); $this->db->like('SUBSTRING(COL_GRIDSQUARE, 1, 4)', substr($gridsquare, 0, 4)); $query = $this->db->get($this->config->item('table_name'), 1, 0); foreach ($query->result() as $workedBeforeRow) { $return['workedBefore'] = true; } $extrawhere=''; if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Q') !== false) { $extrawhere="COL_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'L') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_LOTW_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'E') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_EQSL_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Z') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_QRZCOM_QSO_DOWNLOAD_STATUS='Y'"; } if($type == "SAT") { $this->db->where('COL_PROP_MODE', 'SAT'); if ($extrawhere != '') { $this->db->where('('.$extrawhere.')'); } else { $this->db->where("1=0"); } } else { $this->load->model('logbook_model'); $this->db->where('COL_MODE', $this->logbook_model->get_main_mode_from_mode($mode)); $this->db->where('COL_BAND', $band); $this->db->where('COL_PROP_MODE !=','SAT'); if ($extrawhere != '') { $this->db->where('('.$extrawhere.')'); } else { $this->db->where("1=0"); } } $this->db->where_in('station_id', $logbooks_locations_array); $this->db->like('SUBSTRING(COL_GRIDSQUARE, 1, 4)', substr($gridsquare, 0, 4)); $query = $this->db->get($this->config->item('table_name'), 1, 0); foreach ($query->result() as $workedBeforeRow) { $return['confirmed']=true; } header('Content-Type: application/json'); echo json_encode($return, JSON_PRETTY_PRINT); return; } function jsonlookupdxcc($country, $type, $band, $mode) { session_write_close(); $return = [ "workedBefore" => false, "confirmed" => false, ]; $user_default_confirmation = $this->session->userdata('user_default_confirmation'); $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->load->model('logbook_model'); if(!empty($logbooks_locations_array)) { if($type == "SAT") { $this->db->where('COL_PROP_MODE', 'SAT'); } else { $this->db->where('COL_MODE', $this->logbook_model->get_main_mode_from_mode($mode)); $this->db->where('COL_BAND', $band); $this->db->where('COL_PROP_MODE !=','SAT'); } $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_DXCC', urldecode($country)); $query = $this->db->get($this->config->item('table_name'), 1, 0); foreach ($query->result() as $workedBeforeRow) { $return['workedBefore'] = true; } $extrawhere=''; if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Q') !== false) { $extrawhere="COL_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'L') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_LOTW_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'E') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_EQSL_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Z') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_QRZCOM_QSO_DOWNLOAD_STATUS='Y'"; } if($type == "SAT") { $this->db->where('COL_PROP_MODE', 'SAT'); if ($extrawhere != '') { $this->db->where('('.$extrawhere.')'); } else { $this->db->where("1=0"); } } else { $this->load->model('logbook_model'); $this->db->where('COL_MODE', $this->logbook_model->get_main_mode_from_mode($mode)); $this->db->where('COL_BAND', $band); $this->db->where('COL_PROP_MODE !=','SAT'); if ($extrawhere != '') { $this->db->where('('.$extrawhere.')'); } else { $this->db->where("1=0"); } } $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_DXCC', urldecode($country)); $query = $this->db->get($this->config->item('table_name'), 1, 0); foreach ($query->result() as $workedBeforeRow) { $return['confirmed']=true; } header('Content-Type: application/json'); echo json_encode($return, JSON_PRETTY_PRINT); return; } else { $return['workedBefore'] = false; $return['confirmed'] = false; header('Content-Type: application/json'); echo json_encode($return, JSON_PRETTY_PRINT); return; } } function jsonlookupcallsign($callsign, $type, $band, $mode) { session_write_close(); // Convert - in Callsign to / Used for URL processing $callsign = str_replace("-","/",$callsign); $return = [ "workedBefore" => false, "confirmed" => false, ]; $user_default_confirmation = $this->session->userdata('user_default_confirmation'); $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->load->model('logbook_model'); if(!empty($logbooks_locations_array)) { if($type == "SAT") { $this->db->where('COL_PROP_MODE', 'SAT'); } else { $this->db->where('COL_MODE', $this->logbook_model->get_main_mode_from_mode($mode)); $this->db->where('COL_BAND', $band); $this->db->where('COL_PROP_MODE !=','SAT'); } $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_CALL', strtoupper($callsign)); $query = $this->db->get($this->config->item('table_name'), 1, 0); foreach ($query->result() as $workedBeforeRow) { $return['workedBefore'] = true; } $extrawhere=''; if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Q') !== false) { $extrawhere="COL_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'L') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_LOTW_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'E') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_EQSL_QSL_RCVD='Y'"; } if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Z') !== false) { if ($extrawhere!='') { $extrawhere.=" OR"; } $extrawhere.=" COL_QRZCOM_QSO_DOWNLOAD_STATUS='Y'"; } if($type == "SAT") { $this->db->where('COL_PROP_MODE', 'SAT'); if ($extrawhere != '') { $this->db->where('('.$extrawhere.')'); } else { $this->db->where("1=0"); } } else { $this->load->model('logbook_model'); $this->db->where('COL_MODE', $this->logbook_model->get_main_mode_from_mode($mode)); $this->db->where('COL_BAND', $band); $this->db->where('COL_PROP_MODE !=','SAT'); if ($extrawhere != '') { $this->db->where('('.$extrawhere.')'); } else { $this->db->where("1=0"); } } $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_CALL', strtoupper($callsign)); $query = $this->db->get($this->config->item('table_name'), 1, 0); foreach ($query->result() as $workedBeforeRow) { $return['confirmed'] = true; } header('Content-Type: application/json'); echo json_encode($return, JSON_PRETTY_PRINT); return; } else { $return['workedBefore'] = false; $return['confirmed'] = false; header('Content-Type: application/json'); echo json_encode($return, JSON_PRETTY_PRINT); return; } } function view($id) { $this->load->library('DxccFlag'); $this->load->model('user_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); } $this->load->library('subdivisions'); $this->load->model('logbook_model'); $data['query'] = $this->logbook_model->get_qso($id); $data['dxccFlag'] = $this->dxccflag->get($data['query']->result()[0]->COL_DXCC); if ($this->session->userdata('user_measurement_base') == NULL) { $data['measurement_base'] = $this->config->item('measurement_base'); } else { $data['measurement_base'] = $this->session->userdata('user_measurement_base'); } $this->load->model('Qsl_model'); $data['qslimages'] = $this->Qsl_model->getQslForQsoId($id); $data['primary_subdivision'] = $this->subdivisions->get_primary_subdivision_name($data['query']->result()[0]->COL_DXCC); $data['secondary_subdivision'] = $this->subdivisions->get_secondary_subdivision_name($data['query']->result()[0]->COL_DXCC); $data['max_upload'] = ini_get('upload_max_filesize'); $this->load->view('interface_assets/mini_header', $data); $this->load->view('view_log/qso'); $this->load->view('interface_assets/footer'); } function partial($lookupcall, $callbook, $callsign, $dxcc, $lotw_days, $band = null, $count = 5) { $this->load->model('user_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $html = ""; if(!empty($logbooks_locations_array)) { $this->db->select(''.$this->config->item('table_name').'.COL_CALL, '.$this->config->item('table_name').'.COL_BAND, '.$this->config->item('table_name').'.COL_FREQ, '.$this->config->item('table_name').'.COL_TIME_ON, '.$this->config->item('table_name').'.COL_RST_RCVD, '.$this->config->item('table_name').'.COL_RST_SENT, '.$this->config->item('table_name').'.COL_MODE, '.$this->config->item('table_name').'.COL_SUBMODE, '.$this->config->item('table_name').'.COL_PRIMARY_KEY, '.$this->config->item('table_name').'.COL_SAT_NAME, '.$this->config->item('table_name').'.COL_GRIDSQUARE, '.$this->config->item('table_name').'.COL_QSL_RCVD, '.$this->config->item('table_name').'.COL_EQSL_QSL_RCVD, '.$this->config->item('table_name').'.COL_EQSL_QSL_SENT, '.$this->config->item('table_name').'.COL_QSL_SENT, '.$this->config->item('table_name').'.COL_STX, '.$this->config->item('table_name').'.COL_STX_STRING, '.$this->config->item('table_name').'.COL_SRX, '.$this->config->item('table_name').'.COL_SRX_STRING, '.$this->config->item('table_name').'.COL_LOTW_QSL_SENT, '.$this->config->item('table_name').'.COL_LOTW_QSL_RCVD, '.$this->config->item('table_name').'.COL_VUCC_GRIDS, '.$this->config->item('table_name').'.COL_MY_GRIDSQUARE, '.$this->config->item('table_name').'.COL_CONTEST_ID, '.$this->config->item('table_name').'.COL_STATE, '.$this->config->item('table_name').'.COL_QRZCOM_QSO_UPLOAD_STATUS, '.$this->config->item('table_name').'.COL_QRZCOM_QSO_DOWNLOAD_STATUS, '.$this->config->item('table_name').'.COL_CLUBLOG_QSO_UPLOAD_STATUS, '.$this->config->item('table_name').'.COL_CLUBLOG_QSO_DOWNLOAD_STATUS, '.$this->config->item('table_name').'.COL_POTA_REF, '.$this->config->item('table_name').'.COL_IOTA, '.$this->config->item('table_name').'.COL_SOTA_REF, '.$this->config->item('table_name').'.COL_WWFF_REF, '.$this->config->item('table_name').'.COL_OPERATOR, '.$this->config->item('table_name').'.COL_COUNTRY, station_profile.*, satellite.displayname AS sat_displayname'); $this->db->from($this->config->item('table_name')); $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); $this->db->join('satellite', 'satellite.name = '.$this->config->item('table_name').'.COL_SAT_NAME', 'left outer'); $this->db->where_in('station_profile.station_id', $logbooks_locations_array); $this->db->group_start(); $this->db->where($this->config->item('table_name').'.COL_CALL', $lookupcall); $this->db->or_like($this->config->item('table_name').'.COL_CALL', '/'.$lookupcall,'before'); $this->db->or_like($this->config->item('table_name').'.COL_CALL', $lookupcall.'/','after'); $this->db->or_like($this->config->item('table_name').'.COL_CALL', '/'.$lookupcall.'/'); $this->db->group_end(); $this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "desc"); $this->db->order_by($this->config->item('table_name').".COL_PRIMARY_KEY", "desc"); $this->db->limit($count); $query = $this->db->get(); } if (!empty($logbooks_locations_array) && $query->num_rows() > 0) { $html .= "
"; $html .= ""; $html .= ""; $html .= ""; $html .= ""; $html .= $this->part_table_header_col($this, $this->session->userdata('user_column1')==""?'Mode':$this->session->userdata('user_column1')); $html .= $this->part_table_header_col($this, $this->session->userdata('user_column2')==""?'RSTS':$this->session->userdata('user_column2')); $html .= $this->part_table_header_col($this, $this->session->userdata('user_column3')==""?'RSTR':$this->session->userdata('user_column3')); $html .= $this->part_table_header_col($this, $this->session->userdata('user_column4')==""?'Band':$this->session->userdata('user_column4')); switch($this->session->userdata('user_previous_qsl_type')) { case 0: $html .= ""; break; case 1: $html .= ""; break; case 2: $html .= ""; break; case 4: $html .= ""; break; case 8: $html .= ""; break; default: $html .= ""; break; } $html .= ""; $html .= ""; // Get Date format if($this->session->userdata('user_date_format')) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } foreach ($query->result() as $row) { $timestamp = strtotime($row->COL_TIME_ON ?? '1970-01-01 00:00:00'); $html .= ""; $html .= ""; $html .= ""; $html .= $this->part_table_col($row, $this->session->userdata('user_column1')==""?'Mode':$this->session->userdata('user_column1')); $html .= $this->part_table_col($row, $this->session->userdata('user_column2')==""?'RSTS':$this->session->userdata('user_column2')); $html .= $this->part_table_col($row, $this->session->userdata('user_column3')==""?'RSTR':$this->session->userdata('user_column3')); $html .= $this->part_table_col($row, $this->session->userdata('user_column4')==""?'Band':$this->session->userdata('user_column4')); if ($this->session->userdata('user_previous_qsl_type') == 1) { $html .= ""; } else if ($this->session->userdata('user_previous_qsl_type') == 2) { $html .= ""; } else if ($this->session->userdata('user_previous_qsl_type') == 4) { $html .= ""; } else if ($this->session->userdata('user_previous_qsl_type') == 8) { $html .= ""; } else { $html .= ""; } $html .= ""; $html .= ""; } $html .= "
DateCallsign".__("QSL")."".__("LoTW")."".__("eQSL")."QRZ".__("Clublog") ."".__("QSL")."
".date($custom_date_format, $timestamp). date(' H:i',strtotime($row->COL_TIME_ON ?? '1970-01-01 00:00:00')) . "" . str_replace('0','Ø',strtoupper($row->COL_CALL)) . ""; $html .= "COL_LOTW_QSL_SENT) { case "Y": $html .= "green"; break; default: $html .= "red"; } $html .= "\">▲"; $html .= "COL_LOTW_QSL_RCVD) { case "Y": $html .= "green"; break; default: $html .= "red"; } $html .= "\">▼"; $html .= ""; $html .= "COL_EQSL_QSL_SENT) { case "Y": $html .= "green"; break; default: $html .= "red"; } $html .= "\">▲"; $html .= "COL_EQSL_QSL_RCVD) { case "Y": $html .= "green"; break; default: $html .= "red"; } $html .= "\">▼"; $html .= ""; $html .= "COL_QRZCOM_QSO_UPLOAD_STATUS) { case "Y": $html .= "green"; break; default: $html .= "red"; } $html .= "\">▲"; $html .= "COL_QRZCOM_QSO_DOWNLOAD_STATUS) { case "Y": $html .= "green"; break; default: $html .= "red"; } $html .= "\">▼"; $html .= ""; $html .= "COL_CLUBLOG_QSO_UPLOAD_STATUS) { case "Y": $html .= "green"; break; default: $html .= "red"; } $html .= "\">▲"; $html .= "COL_CLUBLOG_QSO_DOWNLOAD_STATUS) { case "Y": $html .= "green"; break; default: $html .= "red"; } $html .= "\">▼"; $html .= ""; $html .= "COL_QSL_SENT) { case "Y": $html .= "green"; break; case "Q": $html .= "yellow"; break; case "R": $html .= "yellow"; break; case "I": $html .= "grey"; break; default: $html .= "red"; } $html .= "\">▲"; $html .= "COL_QSL_RCVD) { case "Y": $html .= "green"; break; case "Q": $html .= "yellow"; break; case "R": $html .= "yellow"; break; case "I": $html .= "grey"; break; default: $html .= "red"; } $html .= "\">▼"; $html .= "".$row->station_callsign."
"; $html .= "
"; return $html; } else { $callsigninfo['callsign'] = $callbook; if ($dxcc['adif'] !== 0) { $this->load->model('logbook_model'); $callsigninfo['callsign']['dxcc_name'] = $dxcc['entity']; $callsigninfo['dxcc_worked'] = $this->logbook_model->check_if_dxcc_worked_in_logbook($dxcc['adif'], null, $this->session->userdata('user_default_band')); $callsigninfo['dxcc_confirmed'] = $this->logbook_model->check_if_dxcc_cnfmd_in_logbook($dxcc['adif'], null, $this->session->userdata('user_default_band')); } if (isset($callsigninfo['callsign']['gridsquare'])) { $this->load->model('logbook_model'); $callsigninfo['grid_worked'] = $this->logbook_model->check_if_grid_worked_in_logbook(strtoupper(substr($callsigninfo['callsign']['gridsquare'],0,4)), null, $band)->num_rows(); } if (isset($callsigninfo['callsign']['error'])) { $callsigninfo['error'] = $callsigninfo['callsign']['error']; } $callsigninfo['lookupcall'] = strtoupper($lookupcall); $callsigninfo['realcall'] = strtoupper($callsign); $callsigninfo['lotw_lastupload'] = $lotw_days; return $this->load->view('search/result', $callsigninfo, true); } } function search_result($id="", $id2="") { $this->load->model('user_model'); $this->load->model('logbook_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } $id = str_replace('Ø', "0", $id); $id2 = str_replace('Ø', "0", $id2); $fixedid = $id; if ($id2 != "") { if (strlen($id2)>3) { // Last Element longer than 3 chars? Take that as call $fixedid = $id2; } else { // Last Element up to 3 Chars? Take first element as Call $fixedid = $id; } } $query = $this->querydb($fixedid); if ($query->num_rows() == 0) { $query = $this->querydb($id); if ($query->num_rows() > 0) { $data['results'] = $query; $this->load->view('view_log/partial/log_ajax.php', $data); } else { $this->load->model('search'); $iota_search = $this->search->callsign_iota($id); if ($iota_search->num_rows() > 0) { $data['results'] = $iota_search; $this->load->view('view_log/partial/log_ajax.php', $data); } else { if (!$this->load->is_loaded('callbook')) { $this->load->library('callbook'); } $data['callsign'] = $this->callbook->getCallbookData($id); if (isset($data['callsign']['gridsquare'])) { $data['grid_worked'] = $this->logbook_model->check_if_grid_worked_in_logbook(strtoupper(substr($data['callsign']['gridsquare'],0,4)), null, $this->session->userdata('user_default_band'))->num_rows(); } if (isset($data['callsign']['dxcc'])) { //if Callbook lookup does not result in any DXCC, try to resolve it ourselves if($data['callsign']['dxcc'] == ""){ $data['callsign']['dxcc'] = $this->dxcheck($data['callsign']['callsign'], "")['adif']; } $entity = $this->logbook_model->get_entity($data['callsign']['dxcc']); $data['callsign']['dxcc_name'] = $entity['name']; $data['dxcc_worked'] = $this->logbook_model->check_if_dxcc_worked_in_logbook($data['callsign']['dxcc'], null, $this->session->userdata('user_default_band')); $data['dxcc_confirmed'] = $this->logbook_model->check_if_dxcc_cnfmd_in_logbook($data['callsign']['dxcc'], null, $this->session->userdata('user_default_band')); } if (isset($data['callsign']['error'])) { $data['error'] = $data['callsign']['error']; } $data['lookupcall'] = strtoupper($id); $data['realcall'] = strtoupper($id); $data['lotw_lastupload'] = $this->logbook_model->check_last_lotw($id); $this->load->view('search/result', $data); } } } else { $data['results'] = $query; $this->load->view('view_log/partial/log_ajax.php', $data); } } function querydb($id) { $this->db->select('dxcc_entities.adif, lotw_users.callsign, COL_BAND, COL_CALL, COL_CLUBLOG_QSO_DOWNLOAD_DATE, COL_DCL_QSLRDATE, COL_DCL_QSLSDATE, COL_DCL_QSL_SENT, COL_DCL_QSL_RCVD, COL_CLUBLOG_QSO_DOWNLOAD_STATUS, COL_CLUBLOG_QSO_UPLOAD_DATE, COL_CLUBLOG_QSO_UPLOAD_STATUS, COL_CONTEST_ID, COL_DISTANCE, COL_EQSL_QSL_RCVD, COL_EQSL_QSLRDATE, COL_EQSL_QSLSDATE, COL_EQSL_QSL_SENT, COL_FREQ, COL_GRIDSQUARE, COL_IOTA, COL_LOTW_QSL_RCVD, COL_LOTW_QSLRDATE, COL_LOTW_QSLSDATE, COL_LOTW_QSL_SENT, COL_MODE, COL_NAME, COL_OPERATOR, COL_POTA_REF, COL_PRIMARY_KEY, COL_QRZCOM_QSO_DOWNLOAD_DATE, COL_QRZCOM_QSO_DOWNLOAD_STATUS, COL_QRZCOM_QSO_UPLOAD_DATE, COL_QRZCOM_QSO_UPLOAD_STATUS, COL_QSL_RCVD, COL_QSL_RCVD_VIA, COL_QSLRDATE, COL_QSLSDATE, COL_QSL_SENT, COL_QSL_SENT_VIA, COL_QSL_VIA, COL_RST_RCVD, COL_RST_SENT, COL_SAT_NAME, COL_SOTA_REF, COL_SRX, COL_SRX_STRING, COL_STATE, COL_STX, COL_STX_STRING, COL_SUBMODE, COL_TIME_ON, COL_VUCC_GRIDS, COL_WWFF_REF, dxcc_entities.end, lotw_users.lastupload, satellite.displayname AS sat_displayname, station_profile.station_callsign, station_profile.station_gridsquare, station_profile.station_profile_name, dxcc_entities.name'); $this->db->from($this->config->item('table_name')); $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); $this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer'); $this->db->join('lotw_users', 'lotw_users.callsign = '.$this->config->item('table_name').'.col_call', 'left outer'); $this->db->join('satellite', 'satellite.name = '.$this->config->item('table_name').'.COL_SAT_NAME', 'left outer'); $this->db->group_start(); $this->db->like(''.$this->config->item('table_name').'.COL_CALL', $id); $this->db->or_like(''.$this->config->item('table_name').'.COL_GRIDSQUARE', $id); $this->db->or_like(''.$this->config->item('table_name').'.COL_VUCC_GRIDS', $id); $this->db->group_end(); $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); $this->db->order_by(''.$this->config->item('table_name').'.COL_TIME_ON', 'desc'); return $this->db->get(); } function search_lotw_unconfirmed($station_id) { $clean_station_id = $this->security->xss_clean($station_id); if (!is_numeric($clean_station_id) && $clean_station_id !== 'All') { show_404(); } $this->load->model('user_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } $this->load->model('stations'); $logbooks_locations_array = $this->stations->all_of_user(); $station_ids = array(); if ($logbooks_locations_array->num_rows() > 0){ foreach ($logbooks_locations_array->result() as $row) { array_push($station_ids, $row->station_id); } } else { return null; } $location_list = "'".implode("','",$station_ids)."'"; $sql = 'select COL_CALL, COL_MODE, COL_SUBMODE, station_callsign, COL_SAT_NAME, COL_BAND, COL_TIME_ON, lotw_users.lastupload from ' . $this->config->item('table_name') . ' join station_profile on ' . $this->config->item('table_name') . '.station_id = station_profile.station_id join lotw_users on ' . $this->config->item('table_name') . '.col_call = lotw_users.callsign where ' . $this->config->item('table_name') .'.station_id in ('. $location_list . ')'; if ($station_id != 'All') { $sql .= ' and station_profile.station_id = ' . $station_id; } $sql .= " and COL_LOTW_QSL_RCVD <> 'Y' and " . $this->config->item('table_name') . ".COL_TIME_ON < lotw_users.lastupload"; $query = $this->db->query($sql); $data['qsos'] = $query; $this->load->view('search/lotw_unconfirmed_result.php', $data); } function search_incorrect_cq_zones($station_id) { $clean_station_id = $this->security->xss_clean($station_id); if (!is_numeric($clean_station_id) && $clean_station_id !== 'All') { show_404(); } $this->load->model('user_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } $this->load->model('stations'); $logbooks_locations_array = $this->stations->all_of_user(); $station_ids = array(); if ($logbooks_locations_array->num_rows() > 0){ foreach ($logbooks_locations_array->result() as $row) { array_push($station_ids, $row->station_id); } } else { return null; } $location_list = "'".implode("','",$station_ids)."'"; $sql = 'select *, (select group_concat(distinct cqzone order by cqzone) from dxcc_master where countrycode = thcv.col_dxcc and cqzone <> \'\' order by cqzone asc) as correctcqzone from ' . $this->config->item('table_name') . ' thcv join station_profile on thcv.station_id = station_profile.station_id where thcv.station_id in ('. $location_list . ') and not exists (select 1 from dxcc_master where countrycode = thcv.col_dxcc and cqzone = col_cqz) and col_dxcc > 0 '; $params = []; if ($clean_station_id != 'All') { $sql .= ' and station_profile.station_id = ?'; $params[] = $clean_station_id; } $sql .= " order by thcv.col_time_on desc limit 5000"; $query = $this->db->query($sql, $params); $data['qsos'] = $query; $this->load->view('search/cqzones_result.php', $data); } function search_incorrect_itu_zones($station_id) { $clean_station_id = $this->security->xss_clean($station_id); if (!is_numeric($clean_station_id) && $clean_station_id !== 'All') { show_404(); } $this->load->model('user_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } $this->load->model('stations'); $logbooks_locations_array = $this->stations->all_of_user(); $station_ids = array(); if ($logbooks_locations_array->num_rows() > 0){ foreach ($logbooks_locations_array->result() as $row) { array_push($station_ids, $row->station_id); } } else { return null; } $location_list = "'".implode("','",$station_ids)."'"; $sql = "select *, (select group_concat(distinct ituzone order by ituzone) from dxcc_master where countrycode = thcv.col_dxcc and ituzone <> '' order by ituzone asc) as correctituzone from " . $this->config->item('table_name') . " thcv join station_profile on thcv.station_id = station_profile.station_id where thcv.station_id in (". $location_list . ") and not exists (select 1 from dxcc_master where countrycode = thcv.col_dxcc and ituzone = col_ituz) and col_dxcc > 0 "; $params = []; if ($clean_station_id != 'All') { $sql .= ' and station_profile.station_id = ?'; $params[] = $clean_station_id; } $sql .= " order by thcv.col_time_on desc limit 5000"; $query = $this->db->query($sql, $params); $data['qsos'] = $query; $this->load->view('search/ituzones_result.php', $data); } /* * Provide a dxcc search, returning results json encoded */ function dxcheck($call = "", $date = "") { $this->load->model("logbook_model"); if ($date == ''){ $date = date("Y-m-d"); } $ans = $this->logbook_model->dxcc_lookup($call, $date); return $ans; } function getentity($adif) { $this->load->model("logbook_model"); $entity = $this->logbook_model->get_entity($adif); return $entity; } /* return station bearing */ function searchbearing() { $locator = xss_clean($this->input->post('grid')); $ant_path = xss_clean($this->input->post('ant_path')) == '' ? NULL : xss_clean($this->input->post('ant_path')); $station_id = xss_clean($this->input->post('stationProfile')); if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); } if($locator != null) { if (isset($station_id)) { // be sure that station belongs to user $this->load->model('Stations'); if (!$this->Stations->check_station_is_accessible($station_id)) { return ""; } // get station profile $station_profile = $this->Stations->profile_clean($station_id); // get locator $mylocator = $station_profile->station_gridsquare; } else if($this->session->userdata('user_locator') != null){ $mylocator = $this->session->userdata('user_locator'); } else { $mylocator = $this->config->item('locator'); } if ($this->session->userdata('user_measurement_base') == NULL) { $measurement_base = $this->config->item('measurement_base'); } else { $measurement_base = $this->session->userdata('user_measurement_base'); } $bearing = $this->qra->bearing($mylocator, $locator, $measurement_base, $ant_path); echo $bearing; } return ""; } /* return distance */ function searchdistance() { $locator = xss_clean($this->input->post('grid')); $ant_path = xss_clean($this->input->post('ant_path')) == '' ? NULL : xss_clean($this->input->post('ant_path')); $station_id = xss_clean($this->input->post('stationProfile')); if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); } if($locator != null) { if (isset($station_id)) { // be sure that station belongs to user $this->load->model('Stations'); if (!$this->Stations->check_station_is_accessible($station_id)) { return 0; } // get station profile $station_profile = $this->Stations->profile_clean($station_id); // get locator $mylocator = $station_profile->station_gridsquare; } else if($this->session->userdata('user_locator') != null){ $mylocator = $this->session->userdata('user_locator'); } else { $mylocator = $this->config->item('locator'); } $distance = $this->qra->distance($mylocator, $locator, 'K', $ant_path); echo $distance; } return 0; } /* return station bearing */ function bearing($locator, $unit = 'M', $station_id = null, $ant_path = null) { if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); } if($locator != null) { if (isset($station_id)) { // be sure that station belongs to user $this->load->model('Stations'); if (!$this->Stations->check_station_is_accessible($station_id)) { return ""; } // get station profile $station_profile = $this->Stations->profile_clean($station_id); // get locator $mylocator = $station_profile->station_gridsquare; } else if($this->session->userdata('user_locator') != null){ $mylocator = $this->session->userdata('user_locator'); } else { $mylocator = $this->config->item('locator'); } $bearing = $this->qra->bearing($mylocator, $locator, $unit, $ant_path); return $bearing; } return ""; } /* return distance */ function distance($locator, $station_id = null, $ant_path = null) { $distance = 0; if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); } if($locator != null) { if (isset($station_id)) { // be sure that station belongs to user $this->load->model('Stations'); if (!$this->Stations->check_station_is_accessible($station_id)) { return 0; } // get station profile $station_profile = $this->Stations->profile_clean($station_id); // get locator $mylocator = $station_profile->station_gridsquare; } else if($this->session->userdata('user_locator') != null){ $mylocator = $this->session->userdata('user_locator'); } else { $mylocator = $this->config->item('locator'); } $distance = $this->qra->distance($mylocator, $locator, 'K', $ant_path); } return $distance; } function qralatlng($qra) { if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); } $latlng = $this->qra->qra2latlong($qra); return $latlng; } function qralatlngjson() { $qra = xss_clean($this->input->post('qra')); if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); } $latlng = $this->qra->qra2latlong($qra); print json_encode($latlng); } function get_qsos($num, $offset) { $this->db->select(''.$this->config->item('table_name').'.COL_CALL, '.$this->config->item('table_name').'.COL_BAND, '.$this->config->item('table_name').'.COL_TIME_ON, '.$this->config->item('table_name').'.COL_RST_RCVD, '.$this->config->item('table_name').'.COL_RST_SENT, '.$this->config->item('table_name').'.COL_MODE, '.$this->config->item('table_name').'.COL_SUBMODE, '.$this->config->item('table_name').'.COL_NAME, '.$this->config->item('table_name').'.COL_COUNTRY, '.$this->config->item('table_name').'.COL_PRIMARY_KEY, '.$this->config->item('table_name').'.COL_SAT_NAME, '.$this->config->item('table_name').'.COL_GRIDSQUARE, '.$this->config->item('table_name').'.COL_QSL_RCVD, '.$this->config->item('table_name').'.COL_EQSL_QSL_RCVD, '.$this->config->item('table_name').'.COL_EQSL_QSL_SENT, '.$this->config->item('table_name').'.COL_QSL_SENT, '.$this->config->item('table_name').'.COL_STX, '.$this->config->item('table_name').'.COL_STX_STRING, '.$this->config->item('table_name').'.COL_SRX, '.$this->config->item('table_name').'.COL_SRX_STRING, '.$this->config->item('table_name').'.COL_LOTW_QSL_SENT, '.$this->config->item('table_name').'.COL_LOTW_QSL_RCVD, '.$this->config->item('table_name').'.COL_VUCC_GRIDS, station_profile.*'); $this->db->from($this->config->item('table_name')); $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); $this->db->order_by(''.$this->config->item('table_name').'.COL_TIME_ON', "desc"); $this->db->limit($num); $this->db->offset($offset); return $this->db->get(); } function part_table_header_col($ctx, $name) { $ret=''; switch($name) { case 'Mode': $ret.= ''.__("Mode").''; break; case 'RSTS': $ret.= ''.__("RST (S)").''; break; case 'RSTR': $ret.= ''.__("RST (R)").''; break; case 'Country': $ret.= ''.__("Country").''; break; case 'IOTA': $ret.= ''.__("IOTA").''; break; case 'SOTA': $ret.= ''.__("SOTA").''; break; case 'WWFF': $ret.= ''.__("WWFF").''; break; case 'POTA': $ret.= ''.__("POTA").''; break; case 'State': $ret.= ''.__("State").''; break; case 'Grid': $ret.= ''.__("Gridsquare").''; break; case 'Distance': $ret.= ''.__("Distance").''; break; case 'Band': $ret.= ''.__("Band").''; break; case 'Frequency': $ret.= ''.__("Frequency").''; break; case 'Operator': $ret.= ''.__("Operator").''; break; } return $ret; } function part_QrbCalcLink($mygrid, $grid, $vucc) { $ret=''; if (!empty($grid)) { $ret.= $grid . ' '; } else if (!empty($vucc)) { $ret.= $vucc .' '; } return $ret; } function part_table_col($row, $name) { $ret=''; switch($name) { case 'Mode': $ret.= ''; $ret.= $row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE . ''; break; case 'RSTS': $ret.= '' . $row->COL_RST_SENT; if ($row->COL_STX) { $ret.= ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">'; $ret.=sprintf("%03d", $row->COL_STX); $ret.= '';} if ($row->COL_STX_STRING) { $ret.= ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">' . $row->COL_STX_STRING . '';} $ret.= ''; break; case 'RSTR': $ret.= '' . $row->COL_RST_RCVD; if ($row->COL_SRX) { $ret.= ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">'; $ret.=sprintf("%03d", $row->COL_SRX); $ret.= '';} if ($row->COL_SRX_STRING) { $ret.= ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">' . $row->COL_SRX_STRING . '';} $ret.= ''; break; case 'Country': $ret.= '' . ucwords(strtolower(($row->COL_COUNTRY ?? ''))); if ($row->end ?? '' != '') $ret.= ' '.__("Deleted DXCC").'' . ''; break; case 'IOTA': $ret.= '' . ($row->COL_IOTA) . ''; break; case 'SOTA': $ret.= '' . ($row->COL_SOTA_REF) . ''; break; case 'WWFF': $ret.= '' . ($row->COL_WWFF_REF) . ''; break; case 'POTA': $ret.= '' . ($row->COL_POTA_REF) . ''; break; case 'Grid': $ret.= '' . $this->part_QrbCalcLink($row->COL_MY_GRIDSQUARE, $row->COL_VUCC_GRIDS, $row->COL_GRIDSQUARE) . ''; break; case 'Distance': $ret.= '' . (($row->COL_DISTANCE ?? '' != '') ? $row->COL_DISTANCE . ' km' : '') . ''; break; case 'Band': $ret.= ''; if($row->COL_SAT_NAME != null) { $ret.= ''.($row->sat_displayname != null ? $row->sat_displayname." (".$row->COL_SAT_NAME.")" : $row->COL_SAT_NAME).''; } else { $ret.= strtolower($row->COL_BAND); } $ret.= ''; break; case 'Frequency': $ret.= ''; if($row->COL_SAT_NAME != null) { $ret.= ''.($row->sat_displayname != null ? $row->sat_displayname." (".$row->COL_SAT_NAME.")" : $row->COL_SAT_NAME).''; } else { if($row->COL_FREQ != null) { $ret.= $this->frequency->qrg_conversion($row->COL_FREQ); } else { $ret.= strtolower($row->COL_BAND); } } $ret.= ''; break; case 'State': $ret.= '' . ($row->COL_STATE) . ''; break; case 'Operator': $ret.= '' . ($row->COL_OPERATOR) . ''; break; } return $ret; } }