Allow adding custom links to the client portal nav-bar

This commit is contained in:
wrongecho
2025-02-04 16:04:44 +00:00
parent 1bbf7c7662
commit cdc0422d31
4 changed files with 28 additions and 1 deletions

View File

@@ -96,8 +96,10 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
$custom_link_location = intval($row['custom_link_location']);
if ($custom_link_location == 1) {
$custom_link_location_display = "Main Side Nav";
} else {
} elseif ($custom_link_location == 2) {
$custom_link_location_display = "Top Nav";
} elseif ($custom_link_location == 3) {
$custom_link_location_display = "Client Portal Nav";
}
?>