2023-12-16 18:42:56 +08:00
|
|
|
<div class="container adif" id="adif_import">
|
2012-11-14 04:29:38 +08:00
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<h2><i class="fas fa-file-import me-2"></i><?php echo $page_title; ?></h2>
|
|
|
|
|
<p class="text-muted mb-4">Import and export your amateur radio logs in ADIF format</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2023-11-17 16:36:40 +08:00
|
|
|
<?php
|
|
|
|
|
$showtab = '';
|
|
|
|
|
if (isset($tab)) {
|
|
|
|
|
$showtab = $tab;
|
|
|
|
|
}
|
2023-10-17 22:19:05 +08:00
|
|
|
?>
|
|
|
|
|
|
2025-08-10 06:40:10 +08:00
|
|
|
<style>
|
|
|
|
|
/* Aggressive tab styling for maximum visibility in dark themes */
|
|
|
|
|
.custom-tab-nav {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 3px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
border-bottom: 1px solid var(--bs-border-color);
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
.custom-tab-btn {
|
|
|
|
|
background-color: #495057 !important;
|
|
|
|
|
color: #ffffff !important;
|
|
|
|
|
border: 2px solid #6c757d !important;
|
|
|
|
|
border-bottom: none !important;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
border-radius: 0.375rem 0.375rem 0 0;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 1px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.custom-tab-btn:hover {
|
|
|
|
|
background-color: #6c757d !important;
|
|
|
|
|
color: #ffffff !important;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
|
|
|
|
|
}
|
|
|
|
|
.custom-tab-btn.active {
|
|
|
|
|
background-color: var(--bs-body-bg) !important;
|
|
|
|
|
color: var(--bs-body-color) !important;
|
|
|
|
|
border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg) !important;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
|
|
|
|
|
}
|
|
|
|
|
.custom-tab-btn i {
|
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
}
|
|
|
|
|
/* Dark theme specific overrides */
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
.custom-tab-btn {
|
|
|
|
|
background-color: #343a40 !important;
|
|
|
|
|
color: #f8f9fa !important;
|
|
|
|
|
border-color: #495057 !important;
|
|
|
|
|
}
|
|
|
|
|
.custom-tab-btn:hover {
|
|
|
|
|
background-color: #495057 !important;
|
|
|
|
|
color: #ffffff !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* Fix text-muted visibility in dark themes */
|
|
|
|
|
.text-muted {
|
|
|
|
|
color: var(--bs-secondary-color) !important;
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// Custom tab functionality since we replaced Bootstrap nav-tabs
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
|
const tabButtons = document.querySelectorAll('.custom-tab-btn');
|
|
|
|
|
const tabPanes = document.querySelectorAll('.tab-pane');
|
|
|
|
|
|
|
|
|
|
tabButtons.forEach(button => {
|
|
|
|
|
button.addEventListener('click', function(e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
// Remove active class from all buttons
|
|
|
|
|
tabButtons.forEach(btn => btn.classList.remove('active'));
|
|
|
|
|
|
|
|
|
|
// Add active class to clicked button
|
|
|
|
|
this.classList.add('active');
|
|
|
|
|
|
|
|
|
|
// Hide all tab panes
|
|
|
|
|
tabPanes.forEach(pane => {
|
|
|
|
|
pane.classList.remove('active', 'show');
|
|
|
|
|
pane.classList.add('fade');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Show target tab pane
|
|
|
|
|
const targetId = this.getAttribute('href').substring(1);
|
|
|
|
|
const targetPane = document.getElementById(targetId);
|
|
|
|
|
if (targetPane) {
|
|
|
|
|
targetPane.classList.remove('fade');
|
|
|
|
|
targetPane.classList.add('active', 'show');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<div class="card shadow-sm">
|
2025-08-10 06:40:10 +08:00
|
|
|
<div class="card-header" style="background-color: var(--bs-secondary-bg); border-bottom: 1px solid var(--bs-border-color);">
|
|
|
|
|
<div class="custom-tab-nav">
|
|
|
|
|
<a href="#import" class="custom-tab-btn <?php if ($showtab == '' || $showtab == 'adif') echo 'active'; ?>"
|
|
|
|
|
data-bs-toggle="tab" role="tab" aria-controls="import" id="import-tab">
|
|
|
|
|
<i class="fas fa-upload"></i><?php echo lang('adif_import') ?>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="#export" class="custom-tab-btn"
|
|
|
|
|
data-bs-toggle="tab" role="tab" aria-controls="export" id="export-tab">
|
|
|
|
|
<i class="fas fa-download"></i><?php echo lang('adif_export') ?>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="#lotw" class="custom-tab-btn"
|
|
|
|
|
data-bs-toggle="tab" role="tab" aria-controls="lotw" id="lotw-tab">
|
|
|
|
|
<i class="fas fa-globe"></i><?php echo lang('lotw_title') ?>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="#dcl" class="custom-tab-btn <?php if ($showtab == 'dcl') echo 'active'; ?>"
|
|
|
|
|
data-bs-toggle="tab" role="tab" aria-controls="dcl" id="dcl-tab">
|
|
|
|
|
<i class="fas fa-flag"></i><?php echo lang('darc_dcl') ?>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
2020-12-04 21:52:00 +08:00
|
|
|
|
2023-11-17 16:36:40 +08:00
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="tab-content">
|
|
|
|
|
<div class="tab-pane <?php if ($showtab == '' || $showtab == 'adif') {
|
2025-08-10 06:40:10 +08:00
|
|
|
echo 'active show';
|
2023-11-17 16:36:40 +08:00
|
|
|
} else {
|
|
|
|
|
echo 'fade';
|
2025-08-10 06:40:10 +08:00
|
|
|
} ?>" id="import" role="tabpanel" aria-labelledby="import-tab">
|
2020-12-04 21:52:00 +08:00
|
|
|
|
2023-11-17 16:36:40 +08:00
|
|
|
<?php if (isset($error) && ($showtab == '' || $showtab == 'adif')) { ?>
|
|
|
|
|
<div class="alert alert-danger" role="alert">
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<i class="fas fa-exclamation-triangle me-2"></i><?php echo $error; ?>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
|
|
|
|
<?php } ?>
|
2020-12-04 21:52:00 +08:00
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<!-- Important Notices -->
|
|
|
|
|
<div class="row mb-4">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<div class="alert alert-warning d-flex align-items-center" role="alert">
|
|
|
|
|
<i class="fas fa-info-circle me-2"></i>
|
|
|
|
|
<div>
|
|
|
|
|
<strong><?php echo lang('general_word_important') ?>:</strong> <?php echo lang('adif_alert_log_files_type') ?><br>
|
|
|
|
|
<strong><?php echo lang('general_word_warning') ?>:</strong> <?php echo lang('gen_max_file_upload_size') ?><?php echo $max_upload; ?>B.
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
2020-12-04 21:52:00 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</div>
|
2011-11-20 06:30:19 +08:00
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<form class="form" action="<?php echo site_url('adif/import'); ?>" method="post" enctype="multipart/form-data">
|
|
|
|
|
|
|
|
|
|
<!-- Station Selection and File Upload -->
|
|
|
|
|
<div class="row mb-4">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<h5 class="mb-3"><i class="fas fa-tower-broadcast me-2"></i>Station Selection</h5>
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="station_profile" class="form-label">Select Station Location</label>
|
|
|
|
|
<select name="station_profile" id="station_profile" class="form-select">
|
|
|
|
|
<option value="0"><?php echo lang('adif_select_stationlocation') ?></option>
|
|
|
|
|
<?php foreach ($station_profile->result() as $station) { ?>
|
|
|
|
|
<option value="<?php echo $station->station_id; ?>" <?php if ($station->station_id == $this->stations->find_active()) {
|
|
|
|
|
echo " selected =\"selected\"";
|
|
|
|
|
} ?>>
|
|
|
|
|
<?php echo lang('gen_hamradio_callsign') . ": " ?><?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)
|
|
|
|
|
</option>
|
|
|
|
|
<?php } ?>
|
|
|
|
|
</select>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
2020-12-04 21:52:00 +08:00
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<div class="col-md-6">
|
|
|
|
|
<h5 class="mb-3"><i class="fas fa-file me-2"></i>File Upload</h5>
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="userfile" class="form-label">Choose ADIF File</label>
|
|
|
|
|
<input class="form-control" type="file" name="userfile" id="userfile" accept=".adi,.ADI,.adif,.ADIF" />
|
|
|
|
|
<div class="form-text">Supported formats: .adi, .adif</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
2023-07-07 19:33:15 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-04-05 20:23:43 +08:00
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<!-- Import Options -->
|
|
|
|
|
<div class="row mb-4">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<h5 class="mb-3"><i class="fas fa-cogs me-2"></i>Import Options</h5>
|
|
|
|
|
|
|
|
|
|
<!-- Basic Options -->
|
|
|
|
|
<div class="card mb-3">
|
2025-08-10 06:40:10 +08:00
|
|
|
<div class="card-header" style="background-color: var(--bs-secondary-bg); border-bottom: 1px solid var(--bs-border-color);">
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<h6 class="mb-0">Basic Settings</h6>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="skipDuplicate" value="1" id="skipDuplicate">
|
|
|
|
|
<label class="form-check-label" for="skipDuplicate">
|
|
|
|
|
<strong><?php echo lang('adif_import_dup') ?></strong>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="dxccAdif" value="1" id="dxccAdif">
|
|
|
|
|
<label class="form-check-label" for="dxccAdif">
|
|
|
|
|
<strong><?php echo lang('adif_dxcc_from_adif') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('adif_dxcc_from_adif_hint') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="operatorName" value="1" id="operatorName">
|
|
|
|
|
<label class="form-check-label" for="operatorName">
|
|
|
|
|
<strong><?php echo lang('adif_always_use_login_call_as_op') ?></strong>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="skipStationCheck" value="1" id="skipStationCheck">
|
|
|
|
|
<label class="form-check-label" for="skipStationCheck">
|
|
|
|
|
<span class="badge bg-danger me-1"><?php echo lang('general_word_danger') ?></span>
|
|
|
|
|
<strong><?php echo lang('adif_ignore_station_call') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('adif_ignore_station_call_hint') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
2020-04-05 20:23:43 +08:00
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<!-- Logbook Upload Markers -->
|
|
|
|
|
<div class="card">
|
2025-08-10 06:40:10 +08:00
|
|
|
<div class="card-header" style="background-color: var(--bs-secondary-bg); border-bottom: 1px solid var(--bs-border-color);">
|
|
|
|
|
<h6 class="mb-0">Mark as Uploaded to Online Logbooks</h6> </div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="markLotw" value="1" id="markLotwImport">
|
|
|
|
|
<label class="form-check-label" for="markLotwImport">
|
|
|
|
|
<strong><?php echo lang('adif_mark_imported_lotw') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('adif_hint_no_info_in_file') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="markHrd" value="1" id="markHrdImport">
|
|
|
|
|
<label class="form-check-label" for="markHrdImport">
|
|
|
|
|
<strong><?php echo lang('adif_mark_imported_hrdlog') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('adif_hint_no_info_in_file') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="markQrz" value="1" id="markQrzImport">
|
|
|
|
|
<label class="form-check-label" for="markQrzImport">
|
|
|
|
|
<strong><?php echo lang('adif_mark_imported_qrz') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('adif_hint_no_info_in_file') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="markClublog" value="1" id="markClublogImport">
|
|
|
|
|
<label class="form-check-label" for="markClublogImport">
|
|
|
|
|
<strong><?php echo lang('adif_mark_imported_clublog') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('adif_hint_no_info_in_file') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
2023-08-07 13:23:57 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<!-- Submit Button -->
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<button type="submit" class="btn btn-primary btn-lg">
|
|
|
|
|
<i class="fas fa-upload me-2"></i><?php echo lang('adif_upload') ?>
|
|
|
|
|
</button>
|
2020-12-04 21:52:00 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</form>
|
|
|
|
|
</div>
|
2020-12-04 21:52:00 +08:00
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<div class="tab-pane fade" id="export" role="tabpanel" aria-labelledby="export-tab">
|
|
|
|
|
|
|
|
|
|
<!-- Custom Export Section -->
|
|
|
|
|
<div class="row mb-4">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<h5 class="mb-3"><i class="fas fa-download me-2"></i><?php echo lang('adif_export_take_it_anywhere') ?></h5>
|
|
|
|
|
<p class="text-muted mb-4"><?php echo lang('adif_export_take_it_anywhere_hint') ?></p>
|
|
|
|
|
|
|
|
|
|
<form class="form" action="<?php echo site_url('adif/export_custom'); ?>" method="post" enctype="multipart/form-data">
|
|
|
|
|
<div class="card">
|
2025-08-10 06:40:10 +08:00
|
|
|
<div class="card-header" style="background-color: var(--bs-secondary-bg); border-bottom: 1px solid var(--bs-border-color);">
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<h6 class="mb-0">Export Settings</h6>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="station_profile_export" class="form-label">Station Location</label>
|
|
|
|
|
<select name="station_profile" id="station_profile_export" class="form-select">
|
|
|
|
|
<option value="0"><?php echo lang('adif_select_stationlocation') ?></option>
|
|
|
|
|
<?php foreach ($station_profile->result() as $station) { ?>
|
|
|
|
|
<option value="<?php echo $station->station_id; ?>" <?php if ($station->station_id == $this->stations->find_active()) {
|
|
|
|
|
echo " selected =\"selected\"";
|
|
|
|
|
} ?>>
|
|
|
|
|
<?php echo lang('gen_hamradio_callsign') . ": " ?><?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)
|
|
|
|
|
</option>
|
|
|
|
|
<?php } ?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="from_export" class="form-label"><?php echo lang('gen_from_date') ?></label>
|
|
|
|
|
<input name="from" id="from_export" type="date" class="form-control">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="to_export" class="form-label"><?php echo lang('gen_to_date') ?></label>
|
|
|
|
|
<input name="to" id="to_export" type="date" class="form-control">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<h6 class="mb-3">Export Options</h6>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="markLotw" value="1" id="markLotwExport">
|
|
|
|
|
<label class="form-check-label" for="markLotwExport">
|
|
|
|
|
<strong><?php echo lang('adif_mark_exported_lotw') ?></strong>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="exportLotw" value="1" id="exportLotw">
|
|
|
|
|
<label class="form-check-label" for="exportLotw">
|
|
|
|
|
<strong><?php echo lang('adif_mark_exported_no_lotw') ?></strong>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-footer">
|
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
|
<i class="fas fa-download me-2"></i><?php echo lang('adif_export_qso') ?>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</form>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</div>
|
2021-05-02 01:52:13 +08:00
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<!-- Satellite Export Section -->
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<div class="card">
|
2025-08-10 06:40:10 +08:00
|
|
|
<div class="card-header" style="background-color: var(--bs-secondary-bg); border-bottom: 1px solid var(--bs-border-color);">
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<h6 class="mb-0"><i class="fas fa-satellite me-2"></i><?php echo lang('adif_export_sat_only_qso') ?></h6>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<p class="mb-3">Export all satellite contacts from your logbook</p>
|
|
|
|
|
<a href="<?php echo site_url('adif/exportsat'); ?>" title="Export All Satellite Contacts" target="_blank" class="btn btn-outline-primary">
|
|
|
|
|
<i class="fas fa-satellite me-2"></i><?php echo lang('adif_export_sat_only_qso_all') ?>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<p class="mb-3">Export satellite contacts confirmed on LoTW</p>
|
|
|
|
|
<a href="<?php echo site_url('adif/exportsatlotw'); ?>" title="Export All Satellite QSOs Confirmed on LoTW" target="_blank" class="btn btn-outline-primary">
|
|
|
|
|
<i class="fas fa-check-circle me-2"></i><?php echo lang('adif_export_sat_only_qso_lotw') ?>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</div>
|
2020-04-05 20:23:43 +08:00
|
|
|
</div>
|
|
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<div class="tab-pane fade" id="lotw" role="tabpanel" aria-labelledby="lotw-tab">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<h5 class="mb-3"><i class="fas fa-globe me-2"></i>LoTW Export Management</h5>
|
|
|
|
|
|
|
|
|
|
<div class="alert alert-warning d-flex align-items-center" role="alert">
|
|
|
|
|
<i class="fas fa-exclamation-triangle me-2"></i>
|
|
|
|
|
<div>
|
|
|
|
|
<strong><?php echo lang('general_word_warning') ?>:</strong> <?php echo lang('adif_lotw_export_if_selected') ?>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
|
|
|
|
|
<form class="form" action="<?php echo site_url('adif/mark_lotw'); ?>" method="post" enctype="multipart/form-data">
|
|
|
|
|
<div class="card">
|
2025-08-10 06:40:10 +08:00
|
|
|
<div class="card-header" style="background-color: var(--bs-secondary-bg); border-bottom: 1px solid var(--bs-border-color);">
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<h6 class="mb-0">Mark QSOs as Exported to LoTW</h6>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="station_profile_lotw" class="form-label">Station Location</label>
|
|
|
|
|
<select name="station_profile" id="station_profile_lotw" class="form-select">
|
|
|
|
|
<option value="0"><?php echo lang('adif_select_stationlocation') ?></option>
|
|
|
|
|
<?php foreach ($station_profile->result() as $station) { ?>
|
|
|
|
|
<option value="<?php echo $station->station_id; ?>">
|
|
|
|
|
<?php echo lang('gen_hamradio_callsign') . ": " ?><?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)
|
|
|
|
|
</option>
|
|
|
|
|
<?php } ?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-3">
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="from_lotw" class="form-label"><?php echo lang('gen_from_date') ?></label>
|
|
|
|
|
<input name="from" id="from_lotw" type="date" class="form-control">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-3">
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="to_lotw" class="form-label"><?php echo lang('gen_to_date') ?></label>
|
|
|
|
|
<input name="to" id="to_lotw" type="date" class="form-control">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-footer">
|
|
|
|
|
<button type="button" class="btn btn-primary" id="markExportedToLotw">
|
|
|
|
|
<i class="fas fa-check me-2"></i><?php echo lang('adif_mark_qso_as_exported_to_lotw') ?>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</form>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</div>
|
2020-11-22 05:06:25 +08:00
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
<div class="tab-pane <?php if ($showtab == 'dcl') {
|
2025-08-10 06:40:10 +08:00
|
|
|
echo 'active show';
|
2023-11-17 16:36:40 +08:00
|
|
|
} else {
|
|
|
|
|
echo 'fade';
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
} ?>" id="dcl" role="tabpanel" aria-labelledby="dcl-tab">
|
|
|
|
|
|
2023-11-17 16:36:40 +08:00
|
|
|
<?php if (isset($error) && $showtab == 'dcl') { ?>
|
|
|
|
|
<div class="alert alert-danger" role="alert">
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<i class="fas fa-exclamation-triangle me-2"></i><?php echo $error; ?>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
|
|
|
|
<?php } ?>
|
2023-10-17 22:19:05 +08:00
|
|
|
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<h5 class="mb-3"><i class="fas fa-flag me-2"></i>DARC DCL Import</h5>
|
|
|
|
|
|
|
|
|
|
<div class="alert alert-info d-flex align-items-center" role="alert">
|
|
|
|
|
<i class="fas fa-info-circle me-2"></i>
|
|
|
|
|
<div>
|
|
|
|
|
<?php echo lang('adif_dcl_text_pre') ?> <a href="http://dcl.darc.de/dml/export_adif_form.php" target="_blank" class="alert-link"><?php echo lang('darc_dcl') ?></a> <?php echo lang('adif_dcl_text_post') ?>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
2023-10-17 22:19:05 +08:00
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
|
|
|
|
|
<form class="form" action="<?php echo site_url('adif/dcl'); ?>" method="post" enctype="multipart/form-data">
|
|
|
|
|
<div class="card">
|
2025-08-10 06:40:10 +08:00
|
|
|
<div class="card-header" style="background-color: var(--bs-secondary-bg); border-bottom: 1px solid var(--bs-border-color);">
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
<h6 class="mb-0">DCL Import Settings</h6>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="userfile_dcl" class="form-label">Choose DCL ADIF File</label>
|
|
|
|
|
<input class="form-control" type="file" name="userfile" id="userfile_dcl" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<h6 class="mb-3">Import Options</h6>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="onlyConfirmed" value="1" id="onlyConfirmed" checked>
|
|
|
|
|
<label class="form-check-label" for="onlyConfirmed">
|
|
|
|
|
<strong><?php echo lang('only_confirmed_qsos') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('only_confirmed_qsos_hint') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="overwriteDok" value="1" id="overwriteDok">
|
|
|
|
|
<label class="form-check-label" for="overwriteDok">
|
|
|
|
|
<span class="badge bg-warning text-dark me-1"><?php echo lang('general_word_warning') ?></span>
|
|
|
|
|
<strong><?php echo lang('overwrite_by_dcl') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('overwrite_by_dcl_hint') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-check mb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" name="ignoreAmbiguous" value="1" id="ignoreAmbiguous" checked>
|
|
|
|
|
<label class="form-check-label" for="ignoreAmbiguous">
|
|
|
|
|
<strong><?php echo lang('ignore_ambiguous') ?></strong>
|
|
|
|
|
<br><small class="text-muted"><?php echo lang('ignore_ambiguous_hint') ?></small>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-footer">
|
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
|
<i class="fas fa-upload me-2"></i><?php echo lang('adif_upload') ?>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</form>
|
2023-10-17 22:19:05 +08:00
|
|
|
</div>
|
Revamp ADIF import/export UI and enhance styling
Improves the ADIF import/export page with a more structured layout, icons, grouped options, and clearer forms for import, export, LoTW, and DCL actions. Adds extensive CSS for better visual hierarchy, card and tab styling, form controls, and alert presentation to provide a modern, user-friendly experience.
2025-08-10 04:55:20 +08:00
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-10-17 22:19:05 +08:00
|
|
|
</div>
|
2023-11-17 16:36:40 +08:00
|
|
|
</div>
|