ajout trombino
This commit is contained in:
parent
84b8051436
commit
a97582e33c
@ -92,8 +92,10 @@ a.anchor {
|
|||||||
bottom: -1px;
|
bottom: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.deroule {
|
/*
|
||||||
|
.deroule {
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
.enroule {
|
.enroule {
|
||||||
display: none;
|
display: none;
|
||||||
@ -158,4 +160,22 @@ a.anchor {
|
|||||||
|
|
||||||
.materiel_ligne2 {
|
.materiel_ligne2 {
|
||||||
background-color: Lavender;
|
background-color: Lavender;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trombi img {
|
||||||
|
display: none;
|
||||||
|
width: 200px;
|
||||||
|
height: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trombi:hover {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trombi:hover img{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.connexion:hover {
|
||||||
|
background-color: khaki;
|
||||||
}
|
}
|
@ -77,6 +77,7 @@ if ($nb_archives > 0) {
|
|||||||
<?php
|
<?php
|
||||||
if ($profil == $niveaux[$roles[3]]) { ?>
|
if ($profil == $niveaux[$roles[3]]) { ?>
|
||||||
<h3>Gestion</h3>
|
<h3>Gestion</h3>
|
||||||
|
<div class="menu"><a href="configuration_actuelle.php">Configuration actuelle de Winlog</a> : affiche la configuration en cours dans <i>winlog_admin_conf.php</i>.</div>
|
||||||
<div class="menu"><a href="scripts_clients.php">Génération des fichiers VBS</a> : re-génére les fichiers de scripts clients à déployer dans les GPO de Active Directory.</div>
|
<div class="menu"><a href="scripts_clients.php">Génération des fichiers VBS</a> : re-génére les fichiers de scripts clients à déployer dans les GPO de Active Directory.</div>
|
||||||
<div class="menu"><a href="recup_comptes.php">Rechargement des comptes</a> : recharge tous les comptes utilisateurs depuis Active Directory.</div>
|
<div class="menu"><a href="recup_comptes.php">Rechargement des comptes</a> : recharge tous les comptes utilisateurs depuis Active Directory.</div>
|
||||||
<div class="menu"><a href="recup_salles.php?p=u">Ajout/mise à jour de machines ou de salles</a> : ajoute les nouvelles salles ou machines et met à jour les existantes.</div>
|
<div class="menu"><a href="recup_salles.php?p=u">Ajout/mise à jour de machines ou de salles</a> : ajoute les nouvelles salles ou machines et met à jour les existantes.</div>
|
||||||
|
@ -5,6 +5,14 @@ include_once("winlog_admin_conf.php");
|
|||||||
include_once('connexions.php');
|
include_once('connexions.php');
|
||||||
include_once('client_http.php');
|
include_once('client_http.php');
|
||||||
include_once('session.php');
|
include_once('session.php');
|
||||||
|
$trombino = false;
|
||||||
|
if ($trombino_url != "") {
|
||||||
|
$trombino = true;
|
||||||
|
}
|
||||||
|
if ($trombino) {
|
||||||
|
include_once('trombino.php');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$username = Username();
|
$username = Username();
|
||||||
$profil = Profil($username);
|
$profil = Profil($username);
|
||||||
@ -85,16 +93,21 @@ while ($mdc = current($machines_de_salle)) {
|
|||||||
$cpt = Compte($username); // récupère les informations sur l'utilisateur courant
|
$cpt = Compte($username); // récupère les informations sur l'utilisateur courant
|
||||||
$style = "";
|
$style = "";
|
||||||
$fin_style = "";
|
$fin_style = "";
|
||||||
|
$div_trombi = "<div>";
|
||||||
|
$fin_div = "</div>";
|
||||||
|
if ($trombino) {
|
||||||
|
$div_trombi = "<div class='trombi'><img src='".$trombino_url."/".$username.".jpg'>";
|
||||||
|
}
|
||||||
if ($cpt[2] == $lib_personnel) {
|
if ($cpt[2] == $lib_personnel) {
|
||||||
$style = "<b>";
|
$style = "<b>";
|
||||||
$fin_style="</b>";
|
$fin_style="</b>";
|
||||||
}
|
}
|
||||||
echo "<tr id=\"".str_replace('.','-',$connexion_machine[$mac]["ip"])."\">";
|
echo "<tr class=\"connexion\" id=\"".str_replace('.','-',$connexion_machine[$mac]["ip"])."\">";
|
||||||
echo "<td><a href=\"machine.php?id=".$mac."\" target=\"blank\">".$style.$mac.$fin_style."</a></td>";
|
echo "<td><a href=\"machine.php?id=".$mac."\" target=\"blank\">".$style.$mac.$fin_style."</a></td>";
|
||||||
echo "<td>".$style.date("H:i:s",$connexion_machine[$mac]["stamp"]).$fin_style."</td>";
|
echo "<td>".$style.date("H:i:s",$connexion_machine[$mac]["stamp"]).$fin_style."</td>";
|
||||||
echo "<td>".$style.$connexion_machine[$mac]["ip"].$fin_style."</td>";
|
echo "<td>".$style.$connexion_machine[$mac]["ip"].$fin_style."</td>";
|
||||||
echo "<td>".$style.$username.$fin_style."</td>";
|
echo "<td>".$div_trombi.$style.$username.$fin_style.$fin_div."</td>";
|
||||||
echo "<td>".$style.$cpt[1]." ".$cpt[0].$fin_style."</td>";
|
echo "<td>".$div_trombi.$style.$cpt[1]." ".$cpt[0].$fin_style.$fin_div."</td>";
|
||||||
echo "<td>".$style.$cpt[2].$fin_style."</td>";
|
echo "<td>".$style.$cpt[2].$fin_style."</td>";
|
||||||
echo "</tr>\n";
|
echo "</tr>\n";
|
||||||
}
|
}
|
||||||
|
@ -127,4 +127,9 @@ $rpc_url = "http://10.5.0.15:81/rpc.php";
|
|||||||
|
|
||||||
// Wake On LAN : url du script d'allumage des PC à distance
|
// Wake On LAN : url du script d'allumage des PC à distance
|
||||||
$wake_url = "http://10.5.0.15:81/wake.php";
|
$wake_url = "http://10.5.0.15:81/wake.php";
|
||||||
|
|
||||||
|
// Trombinoscope : url du répertoire contenant les fichiers images des utilisateurs
|
||||||
|
// Laisser une chaîne vide si pas de trombinoscope disponible :
|
||||||
|
// $trombino_url = "";
|
||||||
|
$trombino_url = "http://lamp.iut.rdz/trombi/photos/2019/";
|
||||||
?>
|
?>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user