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'); } if ($sstvArray !== FALSE && is_array($sstvArray->result())) { echo ''; foreach ($sstvArray->result() as $sstvImage) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
' . lang('gen_hamradio_callsign') . ' ' . lang('gen_hamradio_mode') . ' ' . lang('general_word_date') . ' ' . lang('general_word_time') . ' ' . lang('gen_hamradio_band') . '
' . str_replace("0", "Ø", $sstvImage->COL_CALL) . ''; echo $sstvImage->COL_SUBMODE == null ? $sstvImage->COL_MODE : $sstvImage->COL_SUBMODE; echo ''; $timestamp = strtotime($sstvImage->COL_TIME_ON); echo date($custom_date_format, $timestamp); echo ''; $timestamp = strtotime($sstvImage->COL_TIME_ON); echo date('H:i', $timestamp); echo ''; if ($sstvImage->COL_SAT_NAME != null) { echo $sstvImage->COL_SAT_NAME; } else { echo strtolower($sstvImage->COL_BAND); } ; echo '' . $sstvImage->filename . '
'; } else { echo ''; } ?>