input->post('awardradio') == 'dxcc' || $this->input->method() !== 'post') echo ' checked'?>>
input->post('awardradio') == 'was') echo ' checked'?>>
input->post('awardradio') == 'iota') echo ' checked'?>>
input->post('awardradio') == 'waz') echo ' checked'?>>
input->post('awardradio') == 'vucc') echo ' checked'?>>
Confirmation
input->post('qsl')) echo ' checked="checked"'; ?> >
input->post('lotw')) echo ' checked="checked"'; ?> >
input->post('eqsl')) echo ' checked="checked"'; ?> >
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'); } ?> input->post('awardradio')) { case 'dxcc': $result = write_dxcc_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('awardradio')); break; case 'was': $result = write_was_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('awardradio')); break; case 'iota': $result = write_iota_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('awardradio')); break; case 'waz': $result = write_waz_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('awardradio')); break; case 'vucc': $result = write_vucc_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('awardradio')); break; } } else { echo ''; } ?>
# Date Prefix Country Deleted End Date Show QSOs '; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line->date); echo ' ' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->prefix . ' ' . $line->col_country . ' '; if (!empty($line->end)) echo 'Yes'; echo ' ' . $line->end . ' adif . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>Show '; } echo ''; } function write_was_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { $i = count($timeline_array); echo ''; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line->date); echo ''; } echo '
# Date State Show QSOs
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->col_state . ' col_state . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>Show
'; } function write_iota_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { $i = count($timeline_array); echo ''; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line->date); echo ''; } echo '
# Date Iota Name Prefix Show QSOs
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->col_iota . ' ' . $line->name . ' ' . $line->prefix . ' col_iota . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>Show
'; } function write_waz_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { $i = count($timeline_array); echo ''; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line->date); echo ''; } echo '
# Date CQ Zone Show QSOs
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->col_cqz . ' col_cqz . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>Show
'; } function write_vucc_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { $i = count($timeline_array); echo ''; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line['date']); echo ''; } echo '
# Date Gridsquare Show QSOs
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line['gridsquare'] . ' Show
'; }