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/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } ?> input->post('award')) { case 'dxcc': $result = write_dxcc_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('award')); break; case 'was': $result = write_was_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('award')); break; case 'iota': $result = write_iota_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('award')); break; case 'waz': $result = write_waz_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('award')); break; case 'vucc': $result = write_vucc_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $this->input->post('award')); break; } } else { echo ''; } ?>
# '.__("Date").' '.__("Prefix").' '.__("Country").' '.__("Status").' '.__("End Date").' '.__("Show QSO's").' '; 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 ''.__("Deleted DXCC").''; 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 QSO's").'
' . $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 QSO's").'
' . $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 QSO's").'
' . $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").' '.__("Time").' '.__("Gridsquare").' '.__("Show QSO's").'
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . date('H:i', $date_as_timestamp) . ' ' . $line['gridsquare'] . ' '.__("Show").'
'; }