16 lines
578 B
PHP
Executable File
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';
|
|
}
|