mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Modified for Clublog at LBA
This commit is contained in:
@@ -474,9 +474,19 @@ class QSO
|
||||
}
|
||||
|
||||
$clublogstring .= "\" data-bs-toggle=\"tooltip\"";
|
||||
}
|
||||
} elseif ($data['COL_CLUBLOG_QSO_UPLOAD_STATUS'] == "M") {
|
||||
$clublogstring .= "title=\"".__("Modified");
|
||||
|
||||
$clublogstring .= ' class="clublog-' . (($data['COL_CLUBLOG_QSO_UPLOAD_STATUS'] =='Y') ? 'green':'red') . '">▲</span><span ';
|
||||
if ($data['COL_CLUBLOG_QSO_UPLOAD_DATE'] != null) {
|
||||
$timestamp = strtotime($data['COL_CLUBLOG_QSO_UPLOAD_DATE']);
|
||||
$clublogstring .= "<br />(".__("last sent")." ".($timestamp!=''?date($custom_date_format, $timestamp):'').")";
|
||||
}
|
||||
|
||||
$clublogstring .= "\" data-bs-toggle=\"tooltip\" data-bs-html=\"true\"";
|
||||
} else {
|
||||
$clublogstring .= ' class="clublog-red';
|
||||
}
|
||||
$clublogstring.= '">▲</span><span ';
|
||||
|
||||
if ($data['COL_CLUBLOG_QSO_DOWNLOAD_STATUS'] == "Y") {
|
||||
$clublogstring .= "title=\"".__("Received");
|
||||
@@ -488,9 +498,16 @@ class QSO
|
||||
$clublogstring .= "\" data-bs-toggle=\"tooltip\"";
|
||||
}
|
||||
|
||||
$clublogstring .= ' class="clublog-' . (($data['COL_CLUBLOG_QSO_DOWNLOAD_STATUS']=='Y') ? 'green':'red') . '">▼</span>';
|
||||
$clublogstring .= ' class="clublog-';
|
||||
if ($data['COL_CLUBLOG_QSO_DOWNLOAD_STATUS']=='Y') {
|
||||
$clublogstring.='green';
|
||||
} elseif ($data['COL_CLUBLOG_QSO_DOWNLOAD_STATUS']=='M') {
|
||||
$clublogstring.='yellow';
|
||||
} else {
|
||||
$clublogstring.='red';
|
||||
}
|
||||
$clublogstring.='">▼</span>';
|
||||
|
||||
$clublogstring .= '</span>';
|
||||
|
||||
return $clublogstring;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user