db->query($sql)->result(); } function delete($id) { // Clean ID $clean_id = $this->security->xss_clean($id); // Delete Satellite $this->db->delete('satellite', array('id' => $clean_id)); } function deleteSatMode($id) { // Clean ID $clean_id = $this->security->xss_clean($id); // Delete Satellite $this->db->delete('satellitemode', array('id' => $clean_id)); } function saveupdatedsatellite($id, $satellite) { $this->db->where('satellite.id', $id); $this->db->update('satellite', $satellite); return true; } function saveSatelliteMode($id, $satmode) { $this->db->where('satellitemode.id', $id); $this->db->update('satellitemode', $satmode); return true; } function add() { $data = array( 'name' => xss_clean($this->input->post('name', true)), 'exportname' => xss_clean($this->input->post('exportname', true)), 'orbit' => xss_clean($this->input->post('orbit', true)), ); $this->db->where('name', xss_clean($this->input->post('name', true))); $result = $this->db->get('satellite'); if ($result->num_rows() == 0) { $this->db->insert('satellite', $data); $insert_id = $this->db->insert_id(); $data = array( 'name' => xss_clean($this->input->post('modename', true)), 'satelliteid' => $insert_id, 'uplink_mode' => xss_clean($this->input->post('uplinkmode', true)), 'uplink_freq' => xss_clean($this->input->post('uplinkfrequency', true)), 'downlink_mode' => xss_clean($this->input->post('downlinkmode', true)), 'downlink_freq' => xss_clean($this->input->post('downlinkfrequency', true)), ); $this->db->insert('satellitemode', $data); } } function getsatellite($id) { $this->db->where('id', $id); return $this->db->get('satellite'); } function getsatmodes($id) { $this->db->where('satelliteid', $id); return $this->db->get('satellitemode'); } function insertSatelliteMode() { $data = array( 'name' => xss_clean($this->input->post('name', true)), 'satelliteid' => xss_clean($this->input->post('id', true)), 'uplink_mode' => xss_clean($this->input->post('uplink_mode', true)), 'uplink_freq' => xss_clean($this->input->post('uplink_freq', true)), 'downlink_mode' => xss_clean($this->input->post('downlink_mode', true)), 'downlink_freq' => xss_clean($this->input->post('downlink_freq', true)), ); $this->db->insert('satellitemode', $data); $insert_id = $this->db->insert_id(); return $insert_id; } function satellite_data() { $this->db->select('satellite.name AS satellite, satellitemode.name AS satmode, satellitemode.uplink_mode AS Uplink_Mode, satellitemode.uplink_freq AS Uplink_Freq, satellitemode.downlink_mode AS Downlink_Mode, satellitemode.downlink_freq AS Downlink_Freq'); $this->db->join('satellitemode', 'satellite.id = satellitemode.satelliteid', 'LEFT OUTER'); $query = $this->db->get('satellite'); return $query->result(); } function array_group_by($flds, $arr) { $groups = array(); foreach ($arr as $rec) { $keys = array_map(function($f) use($rec) { return $rec[$f]; }, $flds); $k = implode('@', $keys); if (isset($groups[$k])) { $groups[$k][] = $rec; } else { $groups[$k] = array($rec); } } return $groups; } } ?>