alpha_full/_include/_js/isBackOffice.js.php
2026-04-06 22:58:51 +02:00

16 lines
578 B
PHP
Executable File

<?php
header("Content-Type: application/javascript");
?>
// ne pas afficher le bouton admin dans agencement, sinon oui
var test=(window.top.location.href);
const indexOfFirst = test.indexOf("admin");
if (indexOfFirst!=-1) {
// alert("adm"+window.top.location.href+" " +indexOfFirst);
if(document.getElementById("btnAdmin")) document.getElementById("btnAdmin").style.display='none';
}
else{
// alert("admin OUI "+window.top.location.href+" " +indexOfFirst);
if(document.getElementById("btnAdmin")) document.getElementById("btnAdmin").style.display='flex';
}