mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 18:27:16 +00:00
20 lines
686 B
PHP
20 lines
686 B
PHP
<?php
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
header('Content-Disposition: attachment; filename="'.$this->session->userdata('user_callsign').'-'.date('Ymd-Hi').'.adi"')
|
|
?>
|
|
Wavelog ADIF export
|
|
<ADIF_VER:5>3.1.6
|
|
<PROGRAMID:<?php echo strlen($this->config->item('app_name')); ?>><?php echo $this->config->item('app_name')."\r\n"; ?>
|
|
<PROGRAMVERSION:<?php echo strlen($this->optionslib->get_option('version')); ?>><?php echo $this->optionslib->get_option('version')."\r\n"; ?>
|
|
<EOH>
|
|
|
|
<?php
|
|
$CI =& get_instance();
|
|
if (!$CI->load->is_loaded('AdifHelper')) {
|
|
$CI->load->library('AdifHelper');
|
|
}
|
|
|
|
foreach ($qsos->result() as $qso) {
|
|
echo $CI->adifhelper->getAdifLine($qso);
|
|
}
|