ajout trombino

This commit is contained in:
Jérôme Bousquié 2018-11-23 11:49:14 +01:00
parent 84b8051436
commit a97582e33c
4 changed files with 43 additions and 4 deletions

View File

@ -92,8 +92,10 @@ a.anchor {
bottom: -1px;
}
/*
.deroule {
}
*/
.enroule {
display: none;
@ -159,3 +161,21 @@ a.anchor {
.materiel_ligne2 {
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;
}

View File

@ -77,6 +77,7 @@ if ($nb_archives > 0) {
<?php
if ($profil == $niveaux[$roles[3]]) { ?>
<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="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>

View File

@ -5,6 +5,14 @@ include_once("winlog_admin_conf.php");
include_once('connexions.php');
include_once('client_http.php');
include_once('session.php');
$trombino = false;
if ($trombino_url != "") {
$trombino = true;
}
if ($trombino) {
include_once('trombino.php');
}
$username = 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
$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) {
$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>".$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.$username.$fin_style."</td>";
echo "<td>".$style.$cpt[1]." ".$cpt[0].$fin_style."</td>";
echo "<td>".$div_trombi.$style.$username.$fin_style.$fin_div."</td>";
echo "<td>".$div_trombi.$style.$cpt[1]." ".$cpt[0].$fin_style.$fin_div."</td>";
echo "<td>".$style.$cpt[2].$fin_style."</td>";
echo "</tr>\n";
}

View File

@ -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_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/";
?>