@@ -14,6 +14,7 @@ function echo_table_header_col($ctx, $name) {
14
14
case 'Band ' : echo '<th> ' .$ ctx ->lang ->line ('gen_hamradio_band ' ).'</td> ' ; break ;
15
15
case 'Frequency ' : echo '<th> ' .$ ctx ->lang ->line ('gen_hamradio_frequency ' ).'</th> ' ; break ;
16
16
case 'Operator ' : echo '<th> ' .$ ctx ->lang ->line ('gen_hamradio_operator ' ).'</th> ' ; break ;
17
+ case 'Location ' : echo '<th> ' .$ ctx ->lang ->line ('cloudlog_station_profile ' ).'</th> ' ; break ;
17
18
}
18
19
}
19
20
@@ -33,6 +34,7 @@ function echo_table_col($row, $name) {
33
34
case 'Frequency ' : echo '<td> ' ; if ($ row ->COL_SAT_NAME != null ) { echo '<a href="https://db.satnogs.org/search/?q= ' .$ row ->COL_SAT_NAME .'" target="_blank"> ' ; if ($ row ->COL_FREQ != null ) { echo '<span data-toggle="tooltip" data-original-title=" ' .$ ci ->frequency ->hz_to_mhz ($ row ->COL_FREQ ).'"> ' .$ row ->COL_SAT_NAME .'</span> ' ; } else { echo $ row ->COL_SAT_NAME ; } echo '</a></td> ' ; } else { if ($ row ->COL_FREQ != null ) { echo '<span data-toggle="tooltip" data-original-title=" ' .$ row ->COL_BAND .'"> ' .$ ci ->frequency ->hz_to_mhz ($ row ->COL_FREQ ).'</span> ' ; } else { echo strtolower ($ row ->COL_BAND ); } } echo '</td> ' ; break ;
34
35
case 'State ' : echo '<td> ' . ($ row ->COL_STATE ) . '</td> ' ; break ;
35
36
case 'Operator ' :echo '<td> ' . ($ row ->COL_OPERATOR ) . '</td> ' ; break ;
37
+ case 'Location ' :echo '<td> ' . ($ row ->station_profile_name ) . '</td> ' ; break ;
36
38
}
37
39
}
38
40
@@ -61,7 +63,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) {
61
63
echo_table_header_col ($ this , $ this ->session ->userdata ('user_column2 ' )=="" ?'RSTS ' :$ this ->session ->userdata ('user_column2 ' ));
62
64
echo_table_header_col ($ this , $ this ->session ->userdata ('user_column3 ' )=="" ?'RSTR ' :$ this ->session ->userdata ('user_column3 ' ));
63
65
echo_table_header_col ($ this , $ this ->session ->userdata ('user_column4 ' )=="" ?'Band ' :$ this ->session ->userdata ('user_column4 ' ));
64
- echo_table_header_col ($ this , $ this ->session ->userdata ('user_column5 ' )== "" ? ' Country ' : $ this -> session -> userdata ( ' user_column5 ' ) );
66
+ echo_table_header_col ($ this , $ this ->session ->userdata ('user_column5 ' ));
65
67
66
68
if (($ this ->config ->item ('use_auth ' )) && ($ this ->session ->userdata ('user_type ' ) >= 2 )) { ?>
67
69
<th>QSL</th>
@@ -104,7 +106,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) {
104
106
echo_table_col ($ row , $ this ->session ->userdata ('user_column2 ' )=="" ?'RSTS ' :$ this ->session ->userdata ('user_column2 ' ));
105
107
echo_table_col ($ row , $ this ->session ->userdata ('user_column3 ' )=="" ?'RSTR ' :$ this ->session ->userdata ('user_column3 ' ));
106
108
echo_table_col ($ row , $ this ->session ->userdata ('user_column4 ' )=="" ?'Band ' :$ this ->session ->userdata ('user_column4 ' ));
107
- echo_table_col ($ row , $ this ->session ->userdata ('user_column5 ' )== "" ? ' Country ' : $ this -> session -> userdata ( ' user_column5 ' ) );
109
+ echo_table_col ($ row , $ this ->session ->userdata ('user_column5 ' ));
108
110
109
111
if (($ this ->config ->item ('use_auth ' )) && ($ this ->session ->userdata ('user_type ' ) >= 2 )) { ?>
110
112
<td class="qsl">
0 commit comments