Cloudlog/application/models/Search.php
Thomas Werzmirzowsky b929109428 changed search filter from active logbook to all stations of the user
also changed get_qso($id) accordingly (otherwise no details of the QSOs
from other logbooks can be shown)
2022-02-06 09:41:11 +01:00

22 lines
547 B
PHP

<?php
class Search extends CI_Model {
function callsign_iota($reference) {
$this->db->where('COL_IOTA', $reference);
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
$this->db->where('station_profile.user_id', $this->session->userdata('user_id'));
$query = $this->db->get($this->config->item('table_name'));
return $query;
}
function get_table_columns() {
$query = $this->db->query('DESCRIBE '.$this->config->item('table_name'));
return $query;
}
}
?>