153 lines
5.1 KiB
PHP
153 lines
5.1 KiB
PHP
<?php include('include/headscript.php'); ?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="assets/images/favicon-32x32.png" type="image/png" />
|
|
<?php include('cssinclude.php'); ?>
|
|
<title>Template Buttons - <?= htmlspecialchars($titlewebsite, ENT_QUOTES, 'UTF-8'); ?></title>
|
|
|
|
<style>
|
|
/* Layout flessibile per gestire dimensioni diverse */
|
|
#templateButtons {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
justify-content: flex-start;
|
|
/* Allinea a sinistra */
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Definizione delle dimensioni */
|
|
/* Definizione delle dimensioni */
|
|
.btn-small {
|
|
font-size: 12px;
|
|
padding: 6px 12px;
|
|
min-width: 100px;
|
|
min-height: 30px;
|
|
display: flex;
|
|
/* Aggiunto */
|
|
justify-content: center;
|
|
/* Aggiunto */
|
|
align-items: center;
|
|
/* Aggiunto */
|
|
}
|
|
|
|
.btn-medium {
|
|
font-size: 16px;
|
|
padding: 10px 20px;
|
|
min-width: 130px;
|
|
min-height: 45px;
|
|
display: flex;
|
|
/* Aggiunto */
|
|
justify-content: center;
|
|
/* Aggiunto */
|
|
align-items: center;
|
|
/* Aggiunto */
|
|
}
|
|
|
|
.btn-large {
|
|
font-size: 20px;
|
|
padding: 14px 28px;
|
|
min-width: 180px;
|
|
min-height: 60px;
|
|
display: flex;
|
|
/* Aggiunto */
|
|
justify-content: center;
|
|
/* Aggiunto */
|
|
align-items: center;
|
|
/* Aggiunto */
|
|
}
|
|
|
|
/* Stile della barra di ricerca */
|
|
#searchInput {
|
|
width: 100%;
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
margin-bottom: 15px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<?php include('include/navbar.php'); ?>
|
|
<?php include('include/topbar.php'); ?>
|
|
|
|
<div class="page-wrapper">
|
|
<div class="page-content">
|
|
<?php include('top_stat_widget.php'); ?>
|
|
|
|
<div class="card radius-10">
|
|
<div class="card-header">
|
|
<h6 class="mb-0">Active Templates</h6>
|
|
</div>
|
|
<div class="card-body">
|
|
<!-- Barra di ricerca -->
|
|
<input type="text" id="searchInput" placeholder="Search template...">
|
|
<div id="templateButtons"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="overlay toggle-icon"></div>
|
|
<a href="javaScript:;" class="back-to-top"><i class='bx bxs-up-arrow-alt'></i></a>
|
|
<?php include('include/footer.php'); ?>
|
|
</div>
|
|
|
|
<?php include('jsinclude.php'); ?>
|
|
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
fetch("load_active_templates.php")
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (!data.success) {
|
|
console.error("Error loading templates:", data.message);
|
|
return;
|
|
}
|
|
|
|
let templateButtons = document.getElementById("templateButtons");
|
|
templateButtons.innerHTML = '';
|
|
|
|
data.data.forEach(template => {
|
|
let sizeClass = "btn-medium"; // Default
|
|
if (template.button_size === "small") sizeClass = "btn-small";
|
|
if (template.button_size === "large") sizeClass = "btn-large";
|
|
|
|
let btn = document.createElement("a");
|
|
btn.href = `import_xls.php?id=${template.id}`;
|
|
btn.className = `btn ${sizeClass}`;
|
|
btn.style.backgroundColor = template.button_bg_color;
|
|
btn.style.color = template.button_text_color;
|
|
btn.textContent = template.button_label;
|
|
btn.setAttribute("data-label", template.button_label.toLowerCase()); // Attributo per ricerca
|
|
|
|
templateButtons.appendChild(btn);
|
|
});
|
|
})
|
|
.catch(error => console.error("Fetch error:", error));
|
|
|
|
// Funzione per la ricerca live
|
|
document.getElementById("searchInput").addEventListener("input", function() {
|
|
let searchValue = this.value.toLowerCase();
|
|
document.querySelectorAll("#templateButtons a").forEach(btn => {
|
|
let label = btn.getAttribute("data-label");
|
|
if (label.includes(searchValue)) {
|
|
btn.style.display = "inline-block";
|
|
} else {
|
|
btn.style.display = "none";
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|