Link to WWFF/GMA details in QSO view

这个提交包含在:
phl0 2022-07-08 12:18:25 +02:00
父节点 823cd51ed1
当前提交 56b2833920
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -218,7 +218,19 @@
<?php if($row->COL_SIG_INFO != null) { ?>
<tr>
<td><?php echo $this->lang->line('gen_hamradio_sig_info'); ?></td>
<td><?php echo $row->COL_SIG_INFO; ?></td>
<?php
switch ($row->COL_SIG) {
case "GMA":
echo "<td><a href=\"https://www.cqgma.org/zinfo.php?ref=".$row->COL_SIG_INFO."\" target=\"_blank\">".$row->COL_SIG_INFO."</a></td>";
break;
case "WWFF":
echo "<td><a href=\"https://wwff.co/directory/?showRef=".$row->COL_SIG_INFO."\" target=\"_blank\">".$row->COL_SIG_INFO."</a></td>";
break;
default:
echo "<td>".$row->COL_SIG_INFO."</td>";
break;
}
?>
</tr>
<?php } ?>