-
Notifications
You must be signed in to change notification settings - Fork 1
/
assenze.php
119 lines (97 loc) · 5.56 KB
/
assenze.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
$cod = "ass";
$titolo = "Assenze Giornaliere";
include './components/header.php';
$argoAssenze = $argo->assenze();
?>
<main>
<div class="container">
<?php
// Definizione arrays eventi
$assenze = [];
$ingressi = [];
$uscite = [];
// Classificazione voti in base agli eventi
for ($x = 0; $x < count($argoAssenze); $x++) {
$codEvento = $argoAssenze[$x]['codEvento'];
if ($codEvento == 'A') {
array_push($assenze, $argoAssenze[$x]);
} else if ($codEvento == 'I') {
array_push($ingressi, $argoAssenze[$x]);
} else if ($codEvento == 'U') {
array_push($uscite, $argoAssenze[$x]);
}
};
?>
<div class="section">
<div class="row">
<div id="assenze" class="col s12 m4">
<ul class="collection with-header">
<li class="collection-header">
<h5>Assenze <small>(<?= count($assenze) ?>)</small></h5>
</li>
<?php for ($x = 0; $x < count($assenze); $x++) { ?>
<li class="collection-item avatar">
<i class="circle material-icons red darken-4">close</i>
<span class="title">Assenza del <b><?= dataLeggibile($assenze[$x]['datAssenza']) ?></b></span>
<p>Registrata da <?= rimuovi_parentesi($assenze[$x]['registrataDa']) ?></p>
<?php if (isset($assenze[$x]['giustificataDa'])) { ?>
<p>Giustificata da <?= rimuovi_parentesi($assenze[$x]['giustificataDa']) ?> il <?= dataLeggibile($assenze[$x]['datGiustificazione']) ?>
<?php } else { ?>
<p>Da giustificare!</p>
<a class="secondary-content tooltipped" data-tooltip="Da giustificare!"><i class="material-icons">warning</i></a>
<?php } ?>
</li>
<?php } ?>
</ul>
</div>
<div id="ingressi" class="col s12 m4">
<ul class="collection with-header">
<li class="collection-header">
<h5>Ingressi <small>(<?= count($ingressi) ?>)</small></h5>
</li>
<?php for ($x = 0; $x < count($ingressi); $x++) { ?>
<li class="collection-item avatar">
<i class="circle material-icons green darken-3">subdirectory_arrow_right</i>
<span class="title">Ingresso del <b><?= dataLeggibile($ingressi[$x]['datAssenza']) ?></b> in <b><?= $ingressi[$x]['numOra'] ?>° ora</b></span>
<p>Ingresso alle ore <?= substr($ingressi[$x]['oraAssenza'], -5) ?> registrato da <?= rimuovi_parentesi($ingressi[$x]['registrataDa']) ?></p>
<?php if (isset($ingressi[$x]['giustificataDa'])) { ?>
<p>Giustificato da <?= rimuovi_parentesi($ingressi[$x]['giustificataDa']) ?> il <?= dataLeggibile($ingressi[$x]['datGiustificazione']) ?></p>
<?php } else { ?>
<p>Da giustificare!</p>
<a class="secondary-content tooltipped" data-tooltip="Da giustificare!"><i class="material-icons">warning</i></a>
<?php } ?>
</li>
<?php } ?>
</ul>
</div>
<div id="uscite" class="col s12 m4">
<ul class="collection with-header">
<li class="collection-header">
<h5>Uscite <small>(<?= count($uscite) ?>)</small></h5>
</li>
<?php for ($x = 0; $x < count($uscite); $x++) { ?>
<li class="collection-item avatar">
<i class="circle material-icons orange darken-4">subdirectory_arrow_left</i>
<span class="title">Uscita del <b><?= dataLeggibile($uscite[$x]['datAssenza']) ?></b> in <b><?= $uscite[$x]['numOra'] ?>° ora</b></span>
<p>Uscita alle ore <?= substr($uscite[$x]['oraAssenza'], -5) ?> registrata da <?= rimuovi_parentesi($uscite[$x]['registrataDa']) ?></p>
<?php if (isset($uscite[$x]['giustificataDa'])) { ?>
<p>Giustificato da <?= rimuovi_parentesi($uscite[$x]['giustificataDa']) ?> il <?= dataLeggibile($uscite[$x]['datGiustificazione']) ?></p>
<?php } else { ?>
<p>Da giustificare!</p>
<a class="secondary-content tooltipped" data-tooltip="Da giustificare!"><i class="material-icons">warning</i></a>
<?php } ?>
</li>
<?php } ?>
</ul>
</div>
</div>
</div>
</div>
</main>
<script>
$(document).ready(function() {
$('.tabs').tabs();
});
</script>
<?php include './components/footer.php'; ?>