| 
									
										
										
										
											2020-03-02 02:08:17 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Eqsl_images extends CI_Model { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	function get_image($qso_id) { | 
					
						
							|  |  |  | 		$this->db->where('qso_id', $qso_id); | 
					
						
							|  |  |  | 		$query = $this->db->get('eQSL_images');  | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		$row = $query->row(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(isset($row)) { | 
					
						
							|  |  |  | 			return $row->image_file; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			return "No Image"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	function save_image($qso_id, $image_name) { | 
					
						
							|  |  |  | 		$data = array( | 
					
						
							|  |  |  | 		        'qso_id' => $qso_id, | 
					
						
							|  |  |  | 		        'image_file' => $image_name, | 
					
						
							|  |  |  | 		); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->db->insert('eQSL_images', $data); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-10 22:03:30 +08:00
										 |  |  | 	function eqsl_qso_list() { | 
					
						
							| 
									
										
										
										
											2023-05-14 18:23:48 +08:00
										 |  |  | 		$this->load->model('logbooks_model'); | 
					
						
							|  |  |  | 		$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); | 
					
						
							| 
									
										
										
										
											2025-07-18 00:38:33 +08:00
										 |  |  | 		$this->db->select('COL_PRIMARY_KEY, qso_id, COL_CALL, COL_MODE, COL_SUBMODE, COL_TIME_ON, COL_BAND, COL_SAT_NAME, image_file'); | 
					
						
							| 
									
										
										
										
											2023-05-10 22:03:30 +08:00
										 |  |  | 		$this->db->join($this->config->item('table_name'), 'qso_id = COL_PRIMARY_KEY', 'left outer'); | 
					
						
							| 
									
										
										
										
											2023-05-14 18:23:48 +08:00
										 |  |  | 		$this->db->join('station_profile', $this->config->item('table_name').'.station_id = station_profile.station_id', 'left outer'); | 
					
						
							| 
									
										
										
										
											2025-07-15 21:31:53 +08:00
										 |  |  | 		if (!empty($logbooks_locations_array)) { | 
					
						
							|  |  |  | 			$this->db->where_in('station_profile.station_id', $logbooks_locations_array); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			// Option 1: Prevent query and return empty result
 | 
					
						
							|  |  |  | 			return []; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-05-10 22:03:30 +08:00
										 |  |  | 		$this->db->order_by('COL_TIME_ON', 'DESC'); | 
					
						
							|  |  |  | 		return $this->db->get('eQSL_images'); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-02 02:08:17 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-10 22:03:30 +08:00
										 |  |  | ?>
 |