cloudlog/application/helpers/dashboard_helper.php

167 lines
7.2 KiB
PHP
Raw Permalink Normal View History

<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
if (!function_exists('echo_table_header_col')) {
function echo_table_header_col($ctx, $name)
{
switch ($name) {
case 'Mode':
echo '<th>' . $ctx->lang->line('gen_hamradio_mode') . '</th>';
break;
case 'RSTS':
echo '<th class="d-none d-sm-table-cell">' . $ctx->lang->line('gen_hamradio_rsts') . '</th>';
break;
case 'RSTR':
echo '<th class="d-none d-sm-table-cell">' . $ctx->lang->line('gen_hamradio_rstr') . '</th>';
break;
case 'Country':
echo '<th>' . $ctx->lang->line('general_word_country') . '</th>';
break;
case 'IOTA':
echo '<th>' . $ctx->lang->line('gen_hamradio_iota') . '</th>';
break;
case 'SOTA':
echo '<th>' . $ctx->lang->line('gen_hamradio_sota') . '</th>';
break;
case 'WWFF':
echo '<th>' . $ctx->lang->line('gen_hamradio_wwff') . '</th>';
break;
case 'POTA':
echo '<th>' . $ctx->lang->line('gen_hamradio_pota') . '</th>';
break;
case 'State':
echo '<th>' . $ctx->lang->line('gen_hamradio_state') . '</th>';
break;
case 'Grid':
echo '<th>' . $ctx->lang->line('gen_hamradio_gridsquare') . '</th>';
break;
case 'Distance':
echo '<th>' . $ctx->lang->line('gen_hamradio_distance') . '</th>';
break;
case 'Band':
echo '<th>' . $ctx->lang->line('gen_hamradio_band') . '</th>';
break;
case 'Frequency':
echo '<th>' . $ctx->lang->line('gen_hamradio_frequency') . '</th>';
break;
case 'Operator':
echo '<th>' . $ctx->lang->line('gen_hamradio_operator') . '</th>';
break;
case 'Name':
echo '<th>' . $ctx->lang->line('general_word_name') . '</th>';
break;
case 'Flag':
echo '<th>&nbsp;</th>';
break;
}
}
}
if (!function_exists('echo_table_col')) {
function echo_table_col($row, $name)
{
$ci = &get_instance();
switch ($name) {
case 'Mode':
echo '<td>';
echo $row->COL_SUBMODE == null ? $row->COL_MODE : $row->COL_SUBMODE . '</td>';
break;
case 'RSTS':
echo '<td class="d-none d-sm-table-cell">' . $row->COL_RST_SENT;
if ($row->COL_STX) {
echo ' <span data-bs-toggle="tooltip" title="' . ($row->COL_CONTEST_ID != "" ? $row->COL_CONTEST_ID : "n/a") . '" class="badge text-bg-light">';
printf("%03d", $row->COL_STX);
echo '</span>';
}
if ($row->COL_STX_STRING) {
echo ' <span data-bs-toggle="tooltip" title="' . ($row->COL_CONTEST_ID != "" ? $row->COL_CONTEST_ID : "n/a") . '" class="badge text-bg-light">' . $row->COL_STX_STRING . '</span>';
}
echo '</td>';
break;
case 'RSTR':
echo '<td class="d-none d-sm-table-cell">' . $row->COL_RST_RCVD;
if ($row->COL_SRX) {
echo ' <span data-bs-toggle="tooltip" title="' . ($row->COL_CONTEST_ID != "" ? $row->COL_CONTEST_ID : "n/a") . '" class="badge text-bg-light">';
printf("%03d", $row->COL_SRX);
echo '</span>';
}
if ($row->COL_SRX_STRING) {
echo ' <span data-bs-toggle="tooltip" title="' . ($row->COL_CONTEST_ID != "" ? $row->COL_CONTEST_ID : "n/a") . '" class="badge text-bg-light">' . $row->COL_SRX_STRING . '</span>';
}
echo '</td>';
break;
case 'Country':
echo '<td>' . ucwords(strtolower(($row->COL_COUNTRY)));
if ($row->end != NULL) echo ' <span class="badge text-bg-danger">' . $ci->lang->line('gen_hamradio_deleted_dxcc') . '</span>' . '</td>';
break;
case 'IOTA':
echo '<td>' . ($row->COL_IOTA) . '</td>';
break;
case 'SOTA':
echo '<td>' . ($row->COL_SOTA_REF) . '</td>';
break;
case 'WWFF':
echo '<td>' . ($row->COL_WWFF_REF) . '</td>';
break;
case 'POTA':
echo '<td>' . ($row->COL_POTA_REF) . '</td>';
break;
case 'Grid':
echo '<td>';
echoQrbCalcLink($row->station_gridsquare, $row->COL_VUCC_GRIDS, $row->COL_GRIDSQUARE);
echo '</td>';
break;
case 'Distance':
echo '<td>' . ($row->COL_DISTANCE ? $row->COL_DISTANCE . '&nbsp;km' : '') . '</td>';
break;
case 'Band':
echo '<td>';
if ($row->COL_SAT_NAME != null) {
echo '<a href="https://db.satnogs.org/search/?q=' . $row->COL_SAT_NAME . '" target="_blank">' . $row->COL_SAT_NAME . '</a></td>';
} else {
echo strtolower($row->COL_BAND);
}
echo '</td>';
break;
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">' . $row->COL_SAT_NAME . '</a></td>';
} else {
if ($row->COL_FREQ != null) {
echo $ci->frequency->hz_to_mhz($row->COL_FREQ);
} else {
echo strtolower($row->COL_BAND);
}
}
echo '</td>';
break;
case 'State':
echo '<td>' . ($row->COL_STATE) . '</td>';
break;
case 'Operator':
echo '<td>' . ($row->COL_OPERATOR) . '</td>';
break;
case 'Name':
echo '<td>' . ($row->COL_NAME) . '</td>';
break;
case 'Flag':
$ci->load->library('DxccFlag');
$flag = strtolower($ci->dxccflag->getISO($row->COL_DXCC));
echo '<td><span data-bs-toggle="tooltip" title="' . ucwords(strtolower(($row->name == null ? "- NONE -" : $row->name))) . '"><span class="fi fi-' . $flag . '"></span></span></td>';
break;
}
}
}
if (!function_exists('echoQrbCalcLink')) {
function echoQrbCalcLink($mygrid, $grid, $vucc)
{
if (!empty($grid)) {
echo $grid . ' <a href="javascript:spawnQrbCalculator(\'' . $mygrid . '\',\'' . $grid . '\')"><i class="fas fa-globe"></i></a>';
} else if (!empty($vucc)) {
echo $vucc . ' <a href="javascript:spawnQrbCalculator(\'' . $mygrid . '\',\'' . $vucc . '\')"><i class="fas fa-globe"></i></a>';
}
}
}