From 6778516add2538bd4e64e90a644747b105f77d71 Mon Sep 17 00:00:00 2001 From: paul Date: Sat, 16 May 2020 02:04:41 +0200 Subject: [PATCH] mustard: notifs: Aggiunti controlli per la lista delle notifiche. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * web/mustard/notifs.php: Aggiunta una checkbox per selezionare/deselezionare in massa le notifiche ed un bottone per segnare tutte quelle selezionate come già lette. --- web/mustard/notifs.php | 260 +++++------------------------------------ 1 file changed, 30 insertions(+), 230 deletions(-) diff --git a/web/mustard/notifs.php b/web/mustard/notifs.php index 8e2cb94..c4f04b8 100644 --- a/web/mustard/notifs.php +++ b/web/mustard/notifs.php @@ -32,6 +32,14 @@ if ($account['Level'] != 'guest') { muoribene("Non hai i permessi per vedere questa pagina", true); } +$filtordon = false; +if ($filtordon) { + $filtordimgoff = 'imgs/cerca_act_off.svg'; + $filtordimgon = 'imgs/cerca_act_on.svg'; +} else { + $filtordimgoff = 'imgs/cerca_off.svg'; + $filtordimgon = 'imgs/cerca_on.svg'; +} ?> @@ -52,241 +60,24 @@ if ($account['Level'] != 'guest') { @@ -308,9 +99,16 @@ if ($account['Level'] != 'guest') {
+
+ + +
"sev-normal", 2 => "sev-warning", @@ -323,12 +121,14 @@ if ($account['Level'] != 'guest') { foreach ($notifs['notifs'] as $n) { echo("
" . + "" . $n["Notification"] . "" . "
\n"); } } ?>
+