281 行
		
	
	
	
		
			19 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			281 行
		
	
	
	
		
			19 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| function echo_table_header_col($ctx, $name) {
 | |
| 	switch($name) {
 | |
| 		case 'Mode': echo '<td>'.$ctx->lang->line('gen_hamradio_mode').'</td>'; break;
 | |
| 		case 'RSTS': echo '<td>'.$ctx->lang->line('gen_hamradio_rsts').'</td>'; break;
 | |
| 		case 'RSTR': echo '<td>'.$ctx->lang->line('gen_hamradio_rstr').'</td>'; break;
 | |
| 		case 'Country': echo '<td>'.$ctx->lang->line('general_word_country').'</td>'; break;
 | |
| 		case 'IOTA': echo '<td>'.$ctx->lang->line('gen_hamradio_iota').'</td>'; break;
 | |
| 		case 'SOTA': echo '<td>'.$ctx->lang->line('gen_hamradio_sota').'</td>'; break;
 | |
| 		case 'State': echo '<td>'.$ctx->lang->line('gen_hamradio_state').'</td>'; break;
 | |
| 		case 'Grid': echo '<td>'.$ctx->lang->line('gen_hamradio_gridsquare').'</td>'; break;
 | |
| 		case 'Band': echo '<td>'.$ctx->lang->line('gen_hamradio_band').'</td>'; break;
 | |
| 		case 'Operator': echo '<td>'.$ctx->lang->line('gen_hamradio_operator').'</td>'; break;
 | |
| 		
 | |
| 	}
 | |
| }
 | |
| 
 | |
| function echo_table_col($row, $name) {
 | |
| 	switch($name) {
 | |
| 		case 'Mode':    echo '<td>'; echo $row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE . '</td>'; break;
 | |
|       case 'RSTS':    echo '<td>' . $row->COL_RST_SENT; if ($row->COL_STX) { echo '<span data-toggle="tooltip" data-original-title="'.($row->COL_CONTEST_ID!=""?$row->COL_CONTEST_ID:"n/a").'" class="badge badge-light">'; printf("%03d", $row->COL_STX); echo '</span>';} if ($row->COL_STX_STRING) { echo '<span data-toggle="tooltip" data-original-title="'.($row->COL_CONTEST_ID!=""?$row->COL_CONTEST_ID:"n/a").'" class="badge badge-light">' . $row->COL_STX_STRING . '</span>';} echo '</td>'; break;
 | |
|       case 'RSTR':    echo '<td>' . $row->COL_RST_RCVD; if ($row->COL_SRX) { echo '<span data-toggle="tooltip" data-original-title="'.($row->COL_CONTEST_ID!=""?$row->COL_CONTEST_ID:"n/a").'" class="badge badge-light">'; printf("%03d", $row->COL_SRX); echo '</span>';} if ($row->COL_SRX_STRING) { echo '<span data-toggle="tooltip" data-original-title="'.($row->COL_CONTEST_ID!=""?$row->COL_CONTEST_ID:"n/a").'" class="badge badge-light">' . $row->COL_SRX_STRING . '</span>';} echo '</td>'; break;
 | |
| 		case 'Country': echo '<td>' . ucwords(strtolower(($row->COL_COUNTRY))) . '</td>'; break;
 | |
| 		case 'IOTA':    echo '<td>' . ($row->COL_IOTA) . '</td>'; break;
 | |
| 		case 'SOTA':    echo '<td>' . ($row->COL_SOTA_REF) . '</td>'; break;
 | |
|         case 'Grid':    echo '<td>'; echoQrbCalcLink($row->station_gridsquare, $row->COL_VUCC_GRIDS, $row->COL_GRIDSQUARE); echo '</td>'; break;
 | |
| 		case 'Band':    echo '<td>'; if($row->COL_SAT_NAME != null) { echo $row->COL_SAT_NAME; } else { echo strtolower($row->COL_BAND); } echo '</td>'; break;
 | |
| 		case 'State':   echo '<td>' . ($row->COL_STATE) . '</td>'; break;
 | |
| 		case 'Operator':echo '<td>' . ($row->COL_OPERATOR) . '</td>'; break;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| function echoQrbCalcLink($mygrid, $grid, $vucc) {
 | |
| 	if (strlen($grid) != 0) {
 | |
| 		echo $grid . ' <a href="javascript:spawnQrbCalculator(\'' . $mygrid . '\',\'' . $grid . '\')"><i class="fas fa-globe"></i></a>';
 | |
| 	} else if (strlen($vucc) != 0) {
 | |
| 		echo $vucc .' <a href="javascript:spawnQrbCalculator(\'' . $mygrid . '\',\'' . $vucc . '\')"><i class="fas fa-globe"></i></a>';
 | |
| 	}
 | |
| }
 | |
| ?>
 | |
| 
 | |
| 
 | |
| <div class="table-responsive">
 | |
|     <table class="table table-striped table-hover">
 | |
|         <tr class="titles">
 | |
|             <td><?php echo $this->lang->line('general_word_date'); ?></td>
 | |
|             <?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE || ($this->config->item('show_time'))) { ?>
 | |
|             <td><?php echo $this->lang->line('general_word_time'); ?></td>
 | |
|             <?php } ?>
 | |
|             <td><?php echo $this->lang->line('gen_hamradio_call'); ?></td>
 | |
| <?php
 | |
| 			echo_table_header_col($this, $this->session->userdata('user_column1')==""?'Mode':$this->session->userdata('user_column1'));
 | |
|             echo_table_header_col($this, $this->session->userdata('user_column2')==""?'RSTS':$this->session->userdata('user_column2'));
 | |
|             echo_table_header_col($this, $this->session->userdata('user_column3')==""?'RSTR':$this->session->userdata('user_column3'));
 | |
|             echo_table_header_col($this, $this->session->userdata('user_column4')==""?'Band':$this->session->userdata('user_column4'));
 | |
|             echo_table_header_col($this, $this->session->userdata('user_column5')==""?'Country':$this->session->userdata('user_column5'));
 | |
| 
 | |
|             	if(($this->config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?>
 | |
|                 <td>QSL</td>
 | |
|                 <?php if($this->session->userdata('user_eqsl_name') != "") { ?>
 | |
|                     <td>eQSL</td>
 | |
|                 <?php } ?>
 | |
|                 <?php if($this->session->userdata('user_lotw_name') != "") { ?>
 | |
|                     <td>LoTW</td>
 | |
|                 <?php } ?>
 | |
|             <?php } ?>
 | |
|                 <td><?php echo $this->lang->line('gen_hamradio_station'); ?></td>
 | |
|             <?php if(($this->config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?>
 | |
|                 <td></td>
 | |
|             <?php } ?>
 | |
|         </tr>
 | |
| 
 | |
|         <?php  $i = 0;  foreach ($results->result() as $row) { ?>
 | |
|             <?php
 | |
|                 // 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/cloudlog.php
 | |
|                     $custom_date_format = $this->config->item('qso_date_format');
 | |
|                 }
 | |
|             ?>
 | |
|             <?php  echo '<tr class="tr'.($i & 1).'" id ="qso_'. $row->COL_PRIMARY_KEY .'">'; ?>
 | |
|             <td><?php $timestamp = strtotime($row->COL_TIME_ON); echo date($custom_date_format, $timestamp); ?></td>
 | |
|             <?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE || ($this->config->item('show_time'))) { ?>
 | |
|                 <td><?php $timestamp = strtotime($row->COL_TIME_ON); echo date('H:i', $timestamp); ?></td>
 | |
|             <?php } ?>
 | |
|             <td>
 | |
|                 <a id="edit_qso" href="javascript:displayQso(<?php echo $row->COL_PRIMARY_KEY; ?>)"><?php echo str_replace("0","Ø",strtoupper($row->COL_CALL)); ?></a>
 | |
|             </td>
 | |
| 			<?php
 | |
| 
 | |
|                 echo_table_col($row, $this->session->userdata('user_column1')==""?'Mode':$this->session->userdata('user_column1'));
 | |
|                 echo_table_col($row, $this->session->userdata('user_column2')==""?'RSTS':$this->session->userdata('user_column2'));
 | |
|                 echo_table_col($row, $this->session->userdata('user_column3')==""?'RSTR':$this->session->userdata('user_column3'));
 | |
|                 echo_table_col($row, $this->session->userdata('user_column4')==""?'Band':$this->session->userdata('user_column4'));
 | |
|                 echo_table_col($row, $this->session->userdata('user_column5')==""?'Country':$this->session->userdata('user_column5'));
 | |
| 			
 | |
| 				if(($this->config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?>
 | |
|                 <td class="qsl">
 | |
|                 <span <?php if ($row->COL_QSL_SENT != "N") {
 | |
|                        $timestamp = strtotime($row->COL_QSLSDATE);
 | |
|                        switch ($row->COL_QSL_SENT) {
 | |
|                        case "Y":
 | |
|                           echo "class=\"qsl-green\" data-toggle=\"tooltip\" data-original-title=\"".$this->lang->line('general_word_sent')." ".date($custom_date_format,$timestamp);
 | |
|                           break;
 | |
|                        case "Q":
 | |
|                           echo "class=\"qsl-yellow\" data-toggle=\"tooltip\" data-original-title=\"".$this->lang->line('general_word_queued')." ".date($custom_date_format,$timestamp);
 | |
|                           break;
 | |
|                        case "R":
 | |
|                           echo "class=\"qsl-yellow\" data-toggle=\"tooltip\" data-original-title=\"".$this->lang->line('general_word_requested')." ".date($custom_date_format,$timestamp);
 | |
|                           break;
 | |
|                        case "I":
 | |
|                           echo "class=\"qsl-grey\" data-toggle=\"tooltip\" data-original-title=\"".$this->lang->line('general_word_invalid_ignore')." ".date($custom_date_format,$timestamp);
 | |
|                           break;
 | |
|                        default:
 | |
|                           echo "class=\"qsl-red";
 | |
|                           break;
 | |
|                        }
 | |
|                      } else { echo "class=\"qsl-red"; }
 | |
|                        if ($row->COL_QSL_SENT_VIA != "") {
 | |
|                           switch ($row->COL_QSL_SENT_VIA) {
 | |
|                              case "B":
 | |
|                                 echo " (".$this->lang->line('general_word_qslcard_bureau').")";
 | |
|                                 break;
 | |
|                              case "D":
 | |
|                                 echo " (".$this->lang->line('general_word_qslcard_direct').")";
 | |
|                                 break;
 | |
|                              case "M":
 | |
|                                 echo " (".$this->lang->line('general_word_qslcard_via').": ".($row->COL_QSL_VIA!="" ? $row->COL_QSL_VIA:"n/a").")";
 | |
|                                 break;
 | |
|                              case "E":
 | |
|                                 echo " (".$this->lang->line('general_word_qslcard_electronic').")";
 | |
|                                 break;
 | |
|                          }
 | |
|                        } ?>">▲</span>
 | |
|                 <span <?php if ($row->COL_QSL_RCVD != "N") {
 | |
|                        $timestamp = strtotime($row->COL_QSLRDATE);
 | |
|                        switch ($row->COL_QSL_RCVD) {
 | |
|                        case "Y":
 | |
|                           echo "class=\"qsl-green\" data-toggle=\"tooltip\" data-original-title=\"".$this->lang->line('general_word_received')." ".date($custom_date_format,$timestamp);
 | |
|                           break;
 | |
|                        case "Q":
 | |
|                           echo "class=\"qsl-yellow\" data-toggle=\"tooltip\" data-original-title=\"".$this->lang->line('general_word_queued')." ".date($custom_date_format,$timestamp);
 | |
|                           break;
 | |
|                        case "R":
 | |
|                           echo "class=\"qsl-yellow\" data-toggle=\"tooltip\" data-original-title=\"".$this->lang->line('general_word_requested')." ".date($custom_date_format,$timestamp);
 | |
|                           break;
 | |
|                        case "I":
 | |
|                           echo "class=\"qsl-grey\" data-toggle=\"tooltip\" data-original-title=\"".$this->lang->line('general_word_invalid_ignore')." ".date($custom_date_format,$timestamp);
 | |
|                           break;
 | |
|                        default:
 | |
|                           echo "class=\"qsl-red";
 | |
|                           break;
 | |
|                        }
 | |
|                      } else { echo "class=\"qsl-red"; }
 | |
|                        if ($row->COL_QSL_RCVD_VIA != "") {
 | |
|                           switch ($row->COL_QSL_RCVD_VIA) {
 | |
|                              case "B":
 | |
|                                 echo " (".$this->lang->line('general_word_qslcard_bureau').")";
 | |
|                                 break;
 | |
|                              case "D":
 | |
|                                 echo " (".$this->lang->line('general_word_qslcard_direct').")";
 | |
|                                 break;
 | |
|                              case "M":
 | |
|                                 echo " (Manager)";
 | |
|                                 break;
 | |
|                              case "E":
 | |
|                                 echo " (".$this->lang->line('general_word_qslcard_electronic').")";
 | |
|                                 break;
 | |
|                          }
 | |
|                        } ?>">▼</span>
 | |
|                 </td>
 | |
| 
 | |
|                 <?php if ($this->session->userdata('user_eqsl_name') != ""){ ?>
 | |
|                     <td class="eqsl">
 | |
|                         <span <?php if ($row->COL_EQSL_QSL_SENT == "Y") { $timestamp = strtotime($row->COL_EQSL_QSLSDATE); echo "data-original-title=\"".$this->lang->line('eqsl_short')." ".$this->lang->line('general_word_sent')." ".($timestamp!=''?date($custom_date_format, $timestamp):'')."\" data-toggle=\"tooltip\""; } ?> class="eqsl-<?php echo ($row->COL_EQSL_QSL_SENT=='Y')?'green':'red'?>">▲</span>
 | |
|                         <span <?php if ($row->COL_EQSL_QSL_RCVD == "Y") { $timestamp = strtotime($row->COL_EQSL_QSLRDATE); echo "data-original-title=\"".$this->lang->line('eqsl_short')." ".$this->lang->line('general_word_received')." ".($timestamp!=''?date($custom_date_format, $timestamp):'')."\" data-toggle=\"tooltip\""; } ?> class="eqsl-<?php echo ($row->COL_EQSL_QSL_RCVD=='Y')?'green':'red'?>">
 | |
| 			    	<?php if($row->COL_EQSL_QSL_RCVD =='Y') { ?>
 | |
|                         <a style="color: green" href="<?php echo site_url("eqsl/image/".$row->COL_PRIMARY_KEY); ?>" data-fancybox="images" data-width="528" data-height="336">▼</a>
 | |
|                     <?php } else { ?>
 | |
|                         ▼
 | |
|                     <?php } ?>
 | |
| 			    </span>
 | |
|                     </td>
 | |
|                 <?php } ?>
 | |
| 
 | |
|                 <?php if($this->session->userdata('user_lotw_name') != "") { ?>
 | |
|                     <td class="lotw">
 | |
|                         <?php if ($row->COL_LOTW_QSL_SENT != ''){ ?>
 | |
|                             <span <?php if ($row->COL_LOTW_QSL_SENT == "Y") { $timestamp = strtotime($row->COL_LOTW_QSLSDATE); echo "data-original-title=\"".$this->lang->line('lotw_short')." ".$this->lang->line('general_word_sent')." ".($timestamp!=''?date($custom_date_format, $timestamp):'')."\" data-toggle=\"tooltip\""; } ?> class="lotw-<?php echo ($row->COL_LOTW_QSL_SENT=='Y')?'green':'red'?>">▲</span>
 | |
|                             <span <?php if ($row->COL_LOTW_QSL_RCVD == "Y") { $timestamp = strtotime($row->COL_LOTW_QSLRDATE); echo "data-original-title=\"".$this->lang->line('lotw_short')." ".$this->lang->line('general_word_received')." ".($timestamp!=''?date($custom_date_format, $timestamp):'')."\" data-toggle=\"tooltip\""; } ?> class="lotw-<?php echo ($row->COL_LOTW_QSL_RCVD=='Y')?'green':'red'?>">▼</span>
 | |
|                         <?php } ?>
 | |
|                     </td>
 | |
|                 <?php } ?>
 | |
| 
 | |
|             <?php } ?>
 | |
| 
 | |
|                     <?php if(isset($row->station_callsign)) { ?>
 | |
|                         <td>
 | |
|                             <span class="badge badge-light"><?php echo $row->station_callsign; ?></span>
 | |
|                         </td>
 | |
|                     <?php } ?>
 | |
| 
 | |
|             <?php if(($this->config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?>
 | |
|                 <td>
 | |
|                     <div class="dropdown">
 | |
|                         <a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
 | |
|                             <i class="fas fa-cog"></i>
 | |
|                         </a>
 | |
| 
 | |
|                         <div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
 | |
|                             <a class="dropdown-item" id="edit_qso" href="javascript:qso_edit(<?php echo $row->COL_PRIMARY_KEY; ?>)"><i class="fas fa-edit"></i> <?php echo $this->lang->line('general_edit_qso'); ?></a>
 | |
| 
 | |
|                             <?php if($row->COL_QSL_SENT !='Y') { ?>
 | |
|                                 <div class="qsl_sent_<?php echo $row->COL_PRIMARY_KEY; ?>">
 | |
|                                     <div class="dropdown-divider"></div>
 | |
|                                     <a class="dropdown-item" href="javascript:qsl_sent(<?php echo $row->COL_PRIMARY_KEY; ?>, 'B')" ><i class="fas fa-envelope"></i> <?php echo $this->lang->line('general_mark_qsl_tx_bureau'); ?></a>
 | |
|                                     <a class="dropdown-item" href="javascript:qsl_sent(<?php echo $row->COL_PRIMARY_KEY; ?>, 'D')" ><i class="fas fa-envelope"></i> <?php echo $this->lang->line('general_mark_qsl_tx_direct'); ?></a>
 | |
|                                 </div>
 | |
|                             <?php } ?>
 | |
| 
 | |
|                             <?php if($row->COL_QSL_RCVD !='Y') { ?>
 | |
|                                 <div class="qsl_rcvd_<?php echo $row->COL_PRIMARY_KEY; ?>">
 | |
|                                     <div class="dropdown-divider"></div>
 | |
|                                     <a class="dropdown-item" href="javascript:qsl_rcvd(<?php echo $row->COL_PRIMARY_KEY; ?>, 'B')" ><i class="fas fa-envelope"></i> <?php echo $this->lang->line('general_mark_qsl_rx_bureau'); ?></a>
 | |
|                                     <a class="dropdown-item" href="javascript:qsl_rcvd(<?php echo $row->COL_PRIMARY_KEY; ?>, 'D')" ><i class="fas fa-envelope"></i> <?php echo $this->lang->line('general_mark_qsl_rx_direct'); ?></a>
 | |
|                                     <a class="dropdown-item" href="javascript:qsl_requested(<?php echo $row->COL_PRIMARY_KEY; ?>, 'D')" ><i class="fas fa-envelope"></i> Mark QSL Card Requested</a>
 | |
|                                     <a class="dropdown-item" href="javascript:qsl_ignore(<?php echo $row->COL_PRIMARY_KEY; ?>, 'D')" ><i class="fas fa-envelope"></i> Mark QSL Card Not Required</a>
 | |
|                                 </div>
 | |
|                             <?php } ?>
 | |
| 
 | |
|                             <div class="dropdown-divider"></div>
 | |
| 
 | |
|                             <a class="dropdown-item" href="https://www.qrz.com/db/<?php echo $row->COL_CALL; ?>" target="_blank"><i class="fas fa-question"></i> Lookup on QRZ</a>
 | |
| 
 | |
|                             <a class="dropdown-item" href="https://www.hamqth.com/<?php echo $row->COL_CALL; ?>" target="_blank"><i class="fas fa-question"></i> Lookup on HamQTH</a>
 | |
| 
 | |
|                             <div class="dropdown-divider"></div>
 | |
| 
 | |
|                             <a class="dropdown-item" href="javascript:qso_delete(<?php echo $row->COL_PRIMARY_KEY; ?>, '<?php echo $row->COL_CALL; ?>')"><i class="fas fa-trash-alt"></i> <?php echo $this->lang->line('general_delete_qso'); ?></a>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 </td>
 | |
|             <?php } ?>
 | |
|             </tr>
 | |
|             <?php $i++; } ?>
 | |
| 
 | |
|     </table>
 | |
| 
 | |
|     <?php if (isset($this->pagination)){ ?>
 | |
|         <?php
 | |
|         $config['full_tag_open'] = '<ul class="pagination">';
 | |
|         $config['full_tag_close'] = '</ul>';
 | |
|         $config['attributes'] = ['class' => 'page-link'];
 | |
|         $config['first_link'] = false;
 | |
|         $config['last_link'] = false;
 | |
|         $config['first_tag_open'] = '<li class="page-item">';
 | |
|         $config['first_tag_close'] = '</li>';
 | |
|         $config['prev_link'] = '«';
 | |
|         $config['prev_tag_open'] = '<li class="page-item">';
 | |
|         $config['prev_tag_close'] = '</li>';
 | |
|         $config['next_link'] = '»';
 | |
|         $config['next_tag_open'] = '<li class="page-item">';
 | |
|         $config['next_tag_close'] = '</li>';
 | |
|         $config['last_tag_open'] = '<li class="page-item">';
 | |
|         $config['last_tag_close'] = '</li>';
 | |
|         $config['cur_tag_open'] = '<li class="page-item active"><a href="#" class="page-link">';
 | |
|         $config['cur_tag_close'] = '<span class="sr-only">(current)</span></a></li>';
 | |
|         $config['num_tag_open'] = '<li class="page-item">';
 | |
|         $config['num_tag_close'] = '</li>';
 | |
|         $this->pagination->initialize($config);
 | |
|         ?>
 | |
| 
 | |
|         <?php echo $this->pagination->create_links(); ?>
 | |
| 
 | |
|     <?php } ?>
 | |
| 
 | |
| </div>
 | |
| </div>
 |