mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-25 10:51:34 +01:00
263 lines
7.4 KiB
PHP
263 lines
7.4 KiB
PHP
<?php
|
||
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
*
|
||
* 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 2 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* 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, write to the Free Software
|
||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
*
|
||
* $Id$
|
||
* $Source$
|
||
*/
|
||
|
||
/**
|
||
\file htdocs/user/fiche.php
|
||
\brief Onglet user et permissions de la fiche utilisateur
|
||
\version $Revision$
|
||
*/
|
||
|
||
|
||
require("./pre.inc.php");
|
||
|
||
$langs->load("users");
|
||
|
||
$action=isset($_GET["action"])?$_GET["action"]:$_POST["action"];
|
||
|
||
/**
|
||
* Action ajout
|
||
*/
|
||
if ($_POST["action"] == 'add' && $user->admin)
|
||
{
|
||
$message="";
|
||
if (! $_POST["nom"]) {
|
||
$message='<div class="error">'.$langs->trans("NameNotDefined").'</div>';
|
||
$action="create"; // Go back to create page
|
||
}
|
||
|
||
if (! $message) {
|
||
$editgroup = new UserGroup($db,0);
|
||
|
||
$editgroup->nom = trim($_POST["nom"]);
|
||
$editgroup->note = trim($_POST["note"]);
|
||
|
||
$result = $editgroup->create();
|
||
|
||
if ($result == 0)
|
||
{
|
||
Header("Location: fiche.php?id=".$editgroup->id);
|
||
}
|
||
else
|
||
{
|
||
$message='<div class="error">'.$langs->trans("LoginAlreadyExists",$edituser->login).'</div>';
|
||
$action="create"; // Go back to create page
|
||
}
|
||
}
|
||
}
|
||
|
||
if ($_POST["action"] == 'adduser' && $user->admin)
|
||
{
|
||
if ($_POST["user"])
|
||
{
|
||
$edituser = new User($db, $_POST["user"]);
|
||
$edituser->SetInGroup($_GET["id"]);
|
||
|
||
Header("Location: fiche.php?id=".$_GET["id"]);
|
||
}
|
||
}
|
||
|
||
if ($_GET["action"] == 'removeuser' && $user->admin)
|
||
{
|
||
if ($_GET["user"])
|
||
{
|
||
$edituser = new User($db, $_GET["user"]);
|
||
$edituser->RemoveFromGroup($_GET["id"]);
|
||
|
||
Header("Location: fiche.php?id=".$_GET["id"]);
|
||
}
|
||
}
|
||
|
||
llxHeader();
|
||
|
||
|
||
/* ************************************************************************** */
|
||
/* */
|
||
/* Affichage fiche en mode cr<63>ation */
|
||
/* */
|
||
/* ************************************************************************** */
|
||
|
||
if ($action == 'create')
|
||
{
|
||
print_titre($langs->trans("NewGroup"));
|
||
|
||
if ($message) { print "<br>".$message."<br>"; }
|
||
|
||
print '<form action="fiche.php" method="post">';
|
||
print '<input type="hidden" name="action" value="add">';
|
||
|
||
print '<table class="border" width="100%">';
|
||
|
||
print "<tr>".'<td valign="top">'.$langs->trans("Lastname").'</td>';
|
||
print '<td class="valeur"><input size="30" type="text" name="nom" value=""></td></tr>';
|
||
|
||
print "<tr>".'<td valign="top">'.$langs->trans("Note").'</td><td>';
|
||
print "<textarea name=\"note\" rows=\"12\" cols=\"40\">";
|
||
print "</textarea></td></tr>\n";
|
||
|
||
print "<tr>".'<td align="center" colspan="2"><input value="'.$langs->trans("CreateGroup").'" type="submit"></td></tr>';
|
||
print "</form>";
|
||
print "</table>\n";
|
||
}
|
||
|
||
|
||
/* ************************************************************************** */
|
||
/* */
|
||
/* Visu et edition */
|
||
/* */
|
||
/* ************************************************************************** */
|
||
else
|
||
{
|
||
if ($_GET["id"])
|
||
{
|
||
$group = new UserGroup($db);
|
||
$group->fetch($_GET["id"]);
|
||
|
||
/*
|
||
* Affichage onglets
|
||
*/
|
||
|
||
$h = 0;
|
||
$head[$h][0] = DOL_URL_ROOT.'/user/group/fiche.php?id='.$group->id;
|
||
$head[$h][1] = $langs->trans("GroupCard");
|
||
$hselected=$h;
|
||
$h++;
|
||
|
||
dolibarr_fiche_head($head, $hselected, $group->nom);
|
||
|
||
/*
|
||
* Confirmation suppression
|
||
*/
|
||
if ($action == 'delete')
|
||
{
|
||
$html = new Form($db);
|
||
$html->form_confirm("fiche.php?id=$fuser->id",$langs->trans("DisableAUser"),$langs->trans("ConfirmDisableUser",$fuser->login),"confirm_delete");
|
||
}
|
||
|
||
|
||
/*
|
||
* Fiche en mode visu
|
||
*/
|
||
|
||
print '<table class="border" width="100%">';
|
||
print '<tr><td width="25%" valign="top">'.$langs->trans("Lastname").'</td>';
|
||
print '<td width="75%" class="valeur">'.$group->nom.'</td>';
|
||
print "</tr>\n";
|
||
print '<tr><td width="25%" valign="top">'.$langs->trans("Note").'</td>';
|
||
print '<td class="valeur">'.nl2br($group->note).' </td>';
|
||
print "</tr>\n";
|
||
print "</table>\n";
|
||
print "<br>\n";
|
||
|
||
$uss = array();
|
||
|
||
$sql = "SELECT u.rowid, u.name, u.firstname, u.code ";
|
||
$sql .= " FROM ".MAIN_DB_PREFIX."user as u";
|
||
$sql .= " ORDER BY u.name";
|
||
|
||
$result = $db->query($sql);
|
||
if ($result)
|
||
{
|
||
$num = $db->num_rows();
|
||
$i = 0;
|
||
|
||
while ($i < $num)
|
||
{
|
||
$obj = $db->fetch_object();
|
||
|
||
$uss[$obj->rowid] = ucfirst(stripslashes($obj->firstname)) . " ".ucfirst(stripslashes($obj->name));
|
||
$i++;
|
||
}
|
||
}
|
||
|
||
if ($user->admin)
|
||
{
|
||
$form = new Form($db);
|
||
print '<form action="fiche.php?id='.$group->id.'" method="post">'."\n";
|
||
print '<input type="hidden" name="action" value="adduser">';
|
||
print '<table class="noborder" width="100%">'."\n";
|
||
print '<tr class="liste_titre"><td>Ajouter</td>'."\n";
|
||
print '<td>';
|
||
print $form->select_array("user",$uss);
|
||
print '</td><td>';
|
||
print '<input type="submit">';
|
||
print '</td></tr>'."\n";
|
||
print '</table></form>'."\n";
|
||
}
|
||
/*
|
||
* Membres du groupe
|
||
*
|
||
*/
|
||
$sql = "SELECT u.rowid, u.name, u.firstname, u.code ";
|
||
$sql .= " FROM ".MAIN_DB_PREFIX."user as u";
|
||
$sql .= ",".MAIN_DB_PREFIX."usergroup_user as ug";
|
||
$sql .= " WHERE ug.fk_user = u.rowid";
|
||
$sql .= " AND ug.fk_usergroup = ".$group->id;
|
||
$sql .= " ORDER BY u.name";
|
||
|
||
$result = $db->query($sql);
|
||
if ($result)
|
||
{
|
||
$num = $db->num_rows();
|
||
$i = 0;
|
||
|
||
print "<br>";
|
||
|
||
print '<table class="noborder" width="100%">';
|
||
print '<tr class="liste_titre">';
|
||
print_liste_field_titre($langs->trans("LastName"),"index.php","name","","","",$sortfield);
|
||
print_liste_field_titre($langs->trans("FirstName"),"index.php","firstname","","","",$sortfield);
|
||
print_liste_field_titre($langs->trans("Code"),"index.php","code","","","",$sortfield);
|
||
print "<td>-</td></tr>\n";
|
||
$var=True;
|
||
while ($i < $num)
|
||
{
|
||
$obj = $db->fetch_object();
|
||
$var=!$var;
|
||
|
||
print "<tr $bc[$var]>";
|
||
print '<td>'.ucfirst(stripslashes($obj->name)).'</td>';
|
||
print '<td>'.ucfirst(stripslashes($obj->firstname)).'</td>';
|
||
print '<td>'.$obj->code.'</td><td>';
|
||
|
||
if ($user->admin)
|
||
{
|
||
|
||
print '<a href="fiche.php?id='.$group->id.'&action=removeuser&user='.$obj->rowid.'">';
|
||
print img_delete();
|
||
}
|
||
else
|
||
{
|
||
print "-";
|
||
}
|
||
print "</td></tr>\n";
|
||
$i++;
|
||
}
|
||
print "</table>";
|
||
$db->free();
|
||
}
|
||
}
|
||
}
|
||
|
||
$db->close();
|
||
|
||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||
?>
|