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('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 ''; } ?>
# '.$ci->lang->line('general_word_date').' '.$ci->lang->line('gen_hamradio_prefix').' '.$ci->lang->line('general_word_country').' '.$ci->lang->line('station_logbooks_status').' '.$ci->lang->line('general_word_enddate').' '.$ci->lang->line('gridsquares_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 ''.$ci->lang->line('gen_hamradio_deleted_dxcc').''; echo ' ' . $line->end . ' adif . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.$ci->lang->line('filter_options_show').' '; } echo ''; } function write_was_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { $ci =& get_instance(); $i = count($timeline_array); echo ''; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line->date); echo ''; } echo '
# '.$ci->lang->line('general_word_date').' '.$ci->lang->line('gen_hamradio_state').' '.$ci->lang->line('gridsquares_show_qsos').'
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->col_state . ' col_state . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.$ci->lang->line('filter_options_show').'
'; } function write_iota_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { $ci =& get_instance(); $i = count($timeline_array); echo ''; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line->date); echo ''; } echo '
# '.$ci->lang->line('general_word_date').' '.$ci->lang->line('gen_hamradio_iota').' '.$ci->lang->line('general_word_name').' '.$ci->lang->line('gen_hamradio_prefix').' '.$ci->lang->line('gridsquares_show_qsos').'
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->col_iota . ' ' . $line->name . ' ' . $line->prefix . ' col_iota . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.$ci->lang->line('filter_options_show').'
'; } function write_waz_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { $ci =& get_instance(); $i = count($timeline_array); echo ''; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line->date); echo ''; } echo '
# '.$ci->lang->line('general_word_date').' '.$ci->lang->line('gen_hamradio_cqzone').' '.$ci->lang->line('gridsquares_show_qsos').'
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->col_cqz . ' col_cqz . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.$ci->lang->line('filter_options_show').'
'; } function write_vucc_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { $ci =& get_instance(); $i = count($timeline_array); echo ''; foreach ($timeline_array as $line) { $date_as_timestamp = strtotime($line['date']); echo ''; } echo '
# '.$ci->lang->line('general_word_date').' '.$ci->lang->line('gen_hamradio_gridsquare').' '.$ci->lang->line('gridsquares_show_qsos').'
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line['gridsquare'] . ' '.$ci->lang->line('filter_options_show').'
'; }