mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
Exclude 'RPT'-Propagation in SOTA-CSV-Export
This commit is contained in:
@@ -58,9 +58,13 @@ class Csv_model extends CI_Model
|
||||
$binds[]=$cqz;
|
||||
}
|
||||
|
||||
if ($propagation != 'All') {
|
||||
if ($propagation == 'NoRPT') { // All but RPT
|
||||
$sql .= " and COL_PROP_MODE != 'RPT'";
|
||||
} else if ($propagation == 'All') {
|
||||
; // No Prop-Filter
|
||||
} else { // Propmode set, add SQL
|
||||
$sql .= " and COL_PROP_MODE = ?";
|
||||
$binds[]=$propagation;
|
||||
$binds[] = $propagation;
|
||||
}
|
||||
|
||||
// If date is set, we format the date and add it to the where-statement
|
||||
|
||||
@@ -92,6 +92,7 @@
|
||||
<label for="selectPropagation"><?= __("Propagation Mode"); ?></label>
|
||||
<select class="form-select" id="selectPropagation" name="prop_mode">
|
||||
<option value="All"><?= __("All"); ?></option>
|
||||
<option value="NoRPT" selected="selected"><?= _pgettext("Propagation Mode","All but Repeater"); ?></option>
|
||||
<option value="AS"><?= _pgettext("Propagation Mode","Aircraft Scatter"); ?></option>
|
||||
<option value="AUR"><?= _pgettext("Propagation Mode","Aurora"); ?></option>
|
||||
<option value="AUE"><?= _pgettext("Propagation Mode","Aurora-E"); ?></option>
|
||||
|
||||
Reference in New Issue
Block a user