2019-06-19 15:00:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class Clublog_model extends CI_Model {
|
|
|
|
|
|
|
|
|
|
function get_clublog_auth_info($username) {
|
2019-10-04 18:30:55 +01:00
|
|
|
$this->db->select('user_name, user_clublog_name, user_clublog_password');
|
2019-06-19 15:00:16 +01:00
|
|
|
$this->db->where('user_name', $username);
|
|
|
|
|
$query = $this->db->get($this->config->item('auth_table'));
|
|
|
|
|
return $row = $query->row_array();
|
|
|
|
|
}
|
2019-06-19 16:04:15 +01:00
|
|
|
|
2019-09-26 13:05:28 +01:00
|
|
|
function mark_qsos_sent($station_id) {
|
2019-06-19 16:04:15 +01:00
|
|
|
$data = array(
|
|
|
|
|
'COL_CLUBLOG_QSO_UPLOAD_DATE' => date('Y-m-d'),
|
|
|
|
|
'COL_CLUBLOG_QSO_UPLOAD_STATUS' => "Y",
|
|
|
|
|
);
|
|
|
|
|
|
2019-09-26 13:05:28 +01:00
|
|
|
$this->db->where("station_id", $station_id);
|
2019-06-20 15:16:53 +01:00
|
|
|
$this->db->where("COL_CLUBLOG_QSO_UPLOAD_STATUS", null);
|
2019-06-20 15:24:54 +01:00
|
|
|
$this->db->or_where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "");
|
2019-06-19 16:04:15 +01:00
|
|
|
$this->db->or_where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "N");
|
|
|
|
|
$this->db->update($this->config->item('table_name'), $data);
|
|
|
|
|
}
|
2019-06-20 15:53:57 +01:00
|
|
|
|
2019-10-13 18:04:17 +01:00
|
|
|
function mark_qso_sent($qso_id) {
|
|
|
|
|
$data = array(
|
|
|
|
|
'COL_CLUBLOG_QSO_UPLOAD_DATE' => date('Y-m-d'),
|
|
|
|
|
'COL_CLUBLOG_QSO_UPLOAD_STATUS' => "Y",
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->db->where("COL_PRIMARY_KEY", $qso_id);
|
|
|
|
|
$this->db->update($this->config->item('table_name'), $data);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-12 23:10:22 +01:00
|
|
|
function get_last_five($station_id) {
|
|
|
|
|
$this->db->where('station_id', $station_id);
|
|
|
|
|
$this->db->where("COL_CLUBLOG_QSO_UPLOAD_STATUS", null);
|
|
|
|
|
$this->db->or_where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "");
|
|
|
|
|
$this->db->or_where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "N");
|
|
|
|
|
$this->db->limit(5);
|
|
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
|
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-26 13:05:28 +01:00
|
|
|
function mark_all_qsos_notsent($station_id) {
|
2019-06-20 15:53:57 +01:00
|
|
|
$data = array(
|
|
|
|
|
'COL_CLUBLOG_QSO_UPLOAD_DATE' => null,
|
|
|
|
|
'COL_CLUBLOG_QSO_UPLOAD_STATUS' => "N",
|
|
|
|
|
);
|
|
|
|
|
|
2019-09-26 13:05:28 +01:00
|
|
|
$this->db->where("station_id", $station_id);
|
2019-06-20 15:53:57 +01:00
|
|
|
$this->db->where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "Y");
|
|
|
|
|
$this->db->update($this->config->item('table_name'), $data);
|
|
|
|
|
}
|
2019-06-19 15:00:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|