296 lines
12 KiB
PHP
296 lines
12 KiB
PHP
<?php
|
|
require_once('include/headscript.php');
|
|
|
|
/**
|
|
* Vista admin di tutti i certificati caricati dagli utenti,
|
|
* con DataTables per ricerca e ordinamento.
|
|
*/
|
|
$pdo = DBHandlerSelect::getInstance()->getConnection();
|
|
|
|
function e($value): string
|
|
{
|
|
return htmlspecialchars((string) $value, ENT_QUOTES, 'UTF-8');
|
|
}
|
|
|
|
function initials(string $first, string $last): string
|
|
{
|
|
$ini = strtoupper(mb_substr(trim($first), 0, 1) . mb_substr(trim($last), 0, 1));
|
|
return $ini !== '' ? $ini : '?';
|
|
}
|
|
|
|
function avatarColor(string $seed): string
|
|
{
|
|
$palette = ['#1ebf73', '#2980b9', '#8e44ad', '#e67e22', '#16a085', '#c0392b', '#2c3e50', '#d35400'];
|
|
return $palette[abs(crc32($seed)) % count($palette)];
|
|
}
|
|
|
|
$message = $_GET['message'] ?? 'n';
|
|
|
|
// Elenco certificati con dati utente
|
|
$sql = "SELECT certificateuserprofile.*, auth_users.first_name, auth_users.last_name
|
|
FROM certificateuserprofile
|
|
LEFT JOIN auth_users ON certificateuserprofile.iduser = auth_users.id
|
|
ORDER BY auth_users.last_name, auth_users.first_name";
|
|
$documents = $pdo->query($sql)->fetchAll();
|
|
|
|
// Determina se un certificato è scaduto (per evidenziarlo)
|
|
$today = date('Y-m-d');
|
|
?>
|
|
<!doctype html>
|
|
<html lang="it">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>YogiBook - Certificati (admin)</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta content="YogiBook - Prenotazione facile YogaSoul" name="description" />
|
|
<meta content="Advanced Creative Solutions" name="author" />
|
|
<link rel="shortcut icon" href="assets/images/favicon.ico">
|
|
<link href="assets/css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" />
|
|
<link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="assets/css/app.min.css" id="app-style" rel="stylesheet" type="text/css" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.5/css/dataTables.bootstrap5.min.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.min.js"></script>
|
|
<script src="https://cdn.datatables.net/1.11.5/js/dataTables.bootstrap5.min.js"></script>
|
|
|
|
<script>
|
|
$(function() {
|
|
$('#certificateTable').DataTable({
|
|
"language": {
|
|
"url": "//cdn.datatables.net/plug-ins/1.11.5/i18n/it-IT.json"
|
|
},
|
|
"pageLength": 50,
|
|
"order": [
|
|
[0, "asc"]
|
|
]
|
|
});
|
|
});
|
|
|
|
function confirmDelete(id) {
|
|
Swal.fire({
|
|
title: "Sei sicuro?",
|
|
text: "Questo certificato verrà cancellato definitivamente.",
|
|
icon: "warning",
|
|
showCancelButton: true,
|
|
confirmButtonColor: "#d33",
|
|
cancelButtonColor: "#3085d6",
|
|
confirmButtonText: "Sì, cancella",
|
|
cancelButtonText: "Annulla"
|
|
}).then((result) => {
|
|
if (result.isConfirmed) {
|
|
window.location.href = `deletecertificate.php?id=${id}&source=admin`;
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.admin-card {
|
|
border: none;
|
|
border-radius: 14px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.admin-card .card-body {
|
|
padding: 26px 30px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
color: #6b7280;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.section-lead {
|
|
color: #9ca3af;
|
|
font-size: 14px;
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
#certificateTable thead th {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.03em;
|
|
color: #6b7280;
|
|
}
|
|
|
|
#certificateTable td {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.user-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.avatar {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
font-size: 13px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.user-name {
|
|
font-weight: 600;
|
|
color: #1f2937;
|
|
}
|
|
|
|
.exp-chip {
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
padding: 3px 10px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.exp-ok {
|
|
background: #e3f2ec;
|
|
color: #1a7f52;
|
|
}
|
|
|
|
.exp-expired {
|
|
background: #fdecec;
|
|
color: #c0392b;
|
|
}
|
|
|
|
.doc-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: #1ebf73;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.doc-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="layout-wrapper">
|
|
<header id="page-topbar" class="isvertical-topbar">
|
|
<div class="navbar-header">
|
|
<div class="d-flex">
|
|
<?php include('include/logoarea.php'); ?>
|
|
<button type="button" class="btn btn-sm px-3 font-size-24 header-item waves-effect vertical-menu-btn">
|
|
<i class="bx bx-menu align-middle"></i>
|
|
</button>
|
|
<div class="page-title-box align-self-center d-none d-md-block">
|
|
<h4 class="page-title mb-0">Certificati</h4>
|
|
</div>
|
|
</div>
|
|
<div class="d-flex">
|
|
<?php include('include/languageselection.php'); ?>
|
|
<?php include('include/profiletopbar.php'); ?>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<?php include('include/sidebar.php'); ?>
|
|
<header class="ishorizontal-topbar">
|
|
<div class="navbar-header">
|
|
<div class="d-flex"></div>
|
|
</div>
|
|
<div class="topnav">
|
|
<div class="container-fluid">
|
|
<nav class="navbar navbar-light navbar-expand-lg topnav-menu"></nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="main-content">
|
|
<div class="page-content">
|
|
<div class="container-fluid">
|
|
<?php if ($message === 'success') : ?>
|
|
<div class="alert alert-success" role="alert">Certificato rimosso con successo.</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card admin-card">
|
|
<div class="card-body">
|
|
<div class="section-title">Certificati caricati</div>
|
|
<p class="section-lead">Ciao <?php echo e($firstname); ?>, qui trovi tutti i certificati medici caricati dagli utenti.</p>
|
|
|
|
<div class="table-responsive">
|
|
<table id="certificateTable" class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Utente</th>
|
|
<th>Descrizione</th>
|
|
<th>Scadenza</th>
|
|
<th>Caricato il</th>
|
|
<th>Documento</th>
|
|
<th>Azione</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($documents as $d) :
|
|
$fullName = trim($d['first_name'] . ' ' . $d['last_name']);
|
|
$idc = (int) $d['idcertificateuserprofile'];
|
|
$expTs = strtotime($d['expirydatedocument']);
|
|
$isExpired = $expTs && date('Y-m-d', $expTs) < $today;
|
|
?>
|
|
<tr>
|
|
<td>
|
|
<div class="user-cell">
|
|
<div class="avatar" style="background: <?php echo avatarColor($fullName); ?>;">
|
|
<?php echo e(initials($d['first_name'] ?? '', $d['last_name'] ?? '')); ?>
|
|
</div>
|
|
<span class="user-name"><?php echo e($fullName); ?></span>
|
|
</div>
|
|
</td>
|
|
<td><?php echo e($d['documentdescription']); ?></td>
|
|
<td>
|
|
<span class="exp-chip <?php echo $isExpired ? 'exp-expired' : 'exp-ok'; ?>">
|
|
<?php echo e($d['expirydatedocument']); ?>
|
|
</span>
|
|
</td>
|
|
<td><?php echo e($d['uploaded_at'] ?? 'N/D'); ?></td>
|
|
<td>
|
|
<a class="doc-link" href="user/document/<?php echo e(rawurlencode($d['filenamedocument'])); ?>" target="_blank" rel="noopener">
|
|
<i class="fas fa-file-arrow-down"></i> Apri
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<button class="btn btn-danger btn-sm" onclick="confirmDelete(<?php echo $idc; ?>)">
|
|
<i class="fas fa-trash"></i> Cancella
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php include('include/footer.php'); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="assets/libs/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/libs/metismenujs/metismenujs.min.js"></script>
|
|
<script src="assets/libs/simplebar/simplebar.min.js"></script>
|
|
<script src="assets/libs/eva-icons/eva.min.js"></script>
|
|
<script src="assets/js/app.js"></script>
|
|
</body>
|
|
|
|
</html>
|