This repository has been archived on 2023-12-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ae75/www/backup/backoffice/gestadm.php
2020-11-02 15:46:52 +01:00

187 lines
9.8 KiB
PHP
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* */
/* Copyright (c) 2005-2013 OpenStudio */
/* email : info@thelia.fr */
/* web : http://www.thelia.net */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 3 of the License */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program.  If not, see <http://www.gnu.org/licenses/>. */
/* */
/*************************************************************************************/
require_once("pre.php");
require_once("auth.php");
if(! est_autorise("acces_configuration")) exit;
if(!isset($lang)) $lang=$_SESSION["util"]->lang;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php require_once("title.php");?>
<script type="text/javascript">
function valid(admin){
if(document.getElementById('motdepasse1' + admin ).value == document.getElementById('motdepasse2' + admin ).value)
document.getElementById('formadmin' + admin).submit();
else{
alert("Veuillez verifier votre mot de passe");
return false;
}
}
function ajout(){
if(document.getElementById('motdepasse1').value == document.getElementById('motdepasse2').value && document.getElementById('motdepasse1').value != "")
document.getElementById('formadmin').submit();
else{
alert("Veuillez verifier votre mot de passe");
return false;
}
}
function supp(admin){
if(confirm("confirmez-vous la suppression de cet administrateur?")){
window.location="gestadm_modifier.php?action=supprimer&id="+admin;
}
}
</script>
</head>
<body>
<div id="wrapper">
<div id="subwrapper">
<?php
$menu="configuration";
require_once("entete.php");
?>
<div id="contenu_int">
<p align="left"><a href="accueil.php" class="lien04"><?php echo trad('Accueil', 'admin'); ?></a> <img src="gfx/suivant.gif" width="12" height="9" border="0" /> <a href="configuration.php" class="lien04"><?php echo trad('Configuration', 'admin'); ?></a> <img src="gfx/suivant.gif" width="12" height="9" border="0" /> <a href="gestadm.php" class="lien04"><?php echo trad('Gestion_administrateurs', 'admin'); ?></a></p>
<!-- bloc dŽclinaisons / colonne gauche -->
<div class="entete_liste_config">
<div class="titre"><?php echo trad('LISTE_ADMINISTRATEURS', 'admin'); ?></div>
<div class="fonction_ajout"><a href="#" onclick="$('#ajout_admin').show()"><?php echo trad('AJOUTER_ADMINISTRATEUR', 'admin'); ?></a></div>
</div>
<ul class="Nav_bloc_description">
<li style="height:25px; width:158px;"><?php echo trad('Nom', 'admin'); ?></li>
<li style="height:25px; width:157px; border-left:1px solid #96A8B5;"><?php echo trad('Prenom', 'admin'); ?></li>
<li style="height:25px; width:117px; border-left:1px solid #96A8B5;"><?php echo trad('Identifiant', 'admin'); ?></li>
<li style="height:25px; width:137px; border-left:1px solid #96A8B5;"><?php echo trad('Mdp', 'admin'); ?></li>
<li style="height:25px; width:137px; border-left:1px solid #96A8B5;"><?php echo trad('Confirmation', 'admin'); ?></li>
<li style="height:25px; width:117px; border-left:1px solid #96A8B5;"><?php echo trad('Langue', 'admin'); ?></li>
<li style="height:25px; width:30px;">&nbsp;</li>
</ul>
<div class="bordure_bottom">
<?php
$administrateur = new Administrateur();
$query = "select * from $administrateur->table";
$resul = mysql_query($query, $administrateur->link);
$i=0;
while($row = mysql_fetch_object($resul)){
if(!($i%2)) $fond="ligne_claire_rub";
else $fond="ligne_fonce_rub";
$i++;
?>
<form action="gestadm_modifier.php" id="formadmin<?php echo($row->id); ?>" method="post" onsubmit="valid('<?php echo $row->id; ?>');return false;">
<ul class="<?php echo $fond; ?>">
<li style="width:150px;"><input name="nom" type="text" class="form" value="<?php echo htmlspecialchars($row->nom); ?>" style="width:150px;" /></li>
<li style="width:150px; border-left:1px solid #96A8B5;"><input name="prenom" type="text" class="form" value="<?php echo htmlspecialchars($row->prenom); ?>" style="width:150px;" /></li>
<li style="width:110px; border-left:1px solid #96A8B5;"><input name="identifiant" type="text" class="form" value="<?php echo htmlspecialchars($row->identifiant); ?>" style="width:110px;" /></li>
<li style="width:130px; border-left:1px solid #96A8B5;"><input name="motdepasse1" id="motdepasse1<?php echo($row->id); ?>" type="password" value="<?php echo $pass; ?>" class="form" style="width:130px;" onclick="this.value='';" /></li>
<li style="width:130px; border-left:1px solid #96A8B5;"><input name="motdepasse2" id="motdepasse2<?php echo($row->id); ?>" type="password" value="<?php echo $pass; ?>" class="form" style="width:130px;" onclick="this.value='';" /></li>
<li style="width:110px; border-left:1px solid #96A8B5;">
<select name="lang">
<?php
$lstlang = new Lang();
$query_lstlang = "select * from $lstlang->table order by id";
$resul_lstlang = mysql_query($query_lstlang, $lstlang->link);
while($row_lstlang = mysql_fetch_object($resul_lstlang)){
?>
<option value="<?php echo $row_lstlang->id; ?>" <?php if($row->lang == $row_lstlang->id ) { ?>selected="selected"<?php } ?>><?php echo $row_lstlang->description; ?></option>
<?php
}
?>
</select>
</li>
<li style="width:50px; border-left:1px solid #96A8B5;"><a href="#" onclick="valid('<?php echo $row->id; ?>');return false;"><?php echo trad('modifier', 'admin'); ?></a></li>
<li style="width:20px; border-left:1px solid #96A8B5; text-align:right;"><?php if($_SESSION['util']->id != $row->id) { ?><a href="#" onclick="supp('<?php echo $row->id; ?>')"><img src="gfx/supprimer.gif" width="9" height="9" border="0" /></a><?php } ?></li>
</ul>
<input type="hidden" name="action" value="modifier" />
<input type="hidden" name="id" value="<?php echo($row->id); ?>" />
</form>
<?php } ?>
</div>
<div class="bordure_bottom" id="ajout_admin" style="display: none;">
<form action="gestadm_modifier.php" id="formadmin" method="post" onsubmit="ajout();return false;">
<input type="hidden" name="action" value="ajouter" />
<div class="entete_liste_config" style="margin-top:10px;">
<div class="titre"><?php echo trad('AJOUT_ADMINISTRATEUR', 'admin'); ?></div>
</div>
<ul class="Nav_bloc_description">
<li style="height:25px; width:128px;">Nom</li>
<li style="height:25px; width:127px; border-left:1px solid #96A8B5;"><?php echo trad('Prenom', 'admin'); ?></li>
<li style="height:25px; width:127px; border-left:1px solid #96A8B5;"><?php echo trad('Identifiant', 'admin'); ?></li>
<li style="height:25px; width:127px; border-left:1px solid #96A8B5;"><?php echo trad('Mdp', 'admin'); ?></li>
<li style="height:25px; width:127px; border-left:1px solid #96A8B5;"><?php echo trad('Confirmation', 'admin'); ?></li>
<li style="height:25px; width:217px; border-left:1px solid #96A8B5;"><?php echo trad('Profil', 'admin'); ?></li>
<li style="height:25px; width:30px; border-left:1px solid #96A8B5;">&nbsp;</li>
</ul>
<ul class="ligne_claire_rub">
<li style="width:120px;"><input name="nom" type="text" class="form" size="15" /></li>
<li style="width:120px; border-left:1px solid #96A8B5;"><input name="prenom" type="text" class="form" size="15" /></li>
<li style="width:120px; border-left:1px solid #96A8B5;"><input name="identifiant" type="text" class="form" size="15" /></li>
<li style="width:120px; border-left:1px solid #96A8B5;"><input name="motdepasse1" id="motdepasse1" type="password" class="form" size="15" /></li>
<li style="width:120px; border-left:1px solid #96A8B5;"><input name="motdepasse2" id="motdepasse2" type="password" class="form" size="15" onclick="this.value='';" /></li>
<li style="width:210px; border-left:1px solid #96A8B5;">
<select name="profil">
<?php
$profildesc = new Profildesc();
$query = "select * from $profildesc->table where lang=\"$lang\"";
$resul = mysql_query($query, $profildesc->link);
while($row = mysql_fetch_object($resul)){
?>
<option value="<?php echo $row->profil; ?>"><?php echo $row->titre; ?></option>
<?php
}
?>
</select>
</li>
<li style="width:30px; border-left:1px solid #96A8B5;"><a href="#" onclick="ajout();return false;"><?php echo trad('ajouter', 'admin'); ?></a></li>
</ul>
</form>
</div>
</div>
<!-- fin du bloc de description / colonne de gauche -->
<?php require_once("pied.php");?>
</div>
</div>
</body>
</html>