* * 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/home.php \brief Page acceuil de la zone utilisateurs et groupes \version $Revision$ */ require("./pre.inc.php"); if (! $user->rights->user->user->lire && !$user->admin) { // Redirection vers la page de l'utilisateur Header("Location: fiche.php?id=".$user->id); } $langs->load("users"); llxHeader(); $lien=""; if ($user->admin) $lien=''.img_picto($langs->trans("Setup"),"setup").' '.$langs->trans("Setup").''; print_fiche_titre($langs->trans("MenuUsersAndGroups"),$lien); print ''; print ''; print '
'; // Recherche User $var=false; print '
'; print ''; print ''; print ''; print ''; print "
'.$langs->trans("SearchAUser").'
'; print $langs->trans("Ref").'
'.$langs->trans("Other").':

\n"; print '
'; // Recherche Group $var=false; print '
'; print ''; print ''; print ''; print ''; print "
'.$langs->trans("SearchAGroup").'
'; print $langs->trans("Ref").':
'.$langs->trans("Other").':

\n"; print '
'; print '
'; /* * Derniers utilisateurs créés */ $max=10; $sql = "SELECT u.rowid, u.name, u.firstname, u.admin, u.login, u.fk_societe, ".$db->pdate("u.datec")." as datec,"; $sql.= " u.ldap_sid, s.nom"; $sql.= " FROM ".MAIN_DB_PREFIX."user as u"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON u.fk_societe=s.idp"; $sql.= " ORDER BY u.datec"; $sql.= " DESC limit $max"; $resql=$db->query($sql); if ($resql) { $num = $db->num_rows($resql); print ''; print ''; $var = true; $i = 0; while ($i < $num && $i < $max) { $obj = $db->fetch_object($resql); $var=!$var; print ""; print ""; print "'; print "'; print ""; print ''; $i++; } print "
'.$langs->trans("LastUsersCreated",min($num,$max)).'
rowid\">".img_object($langs->trans("ShowUser"),"user")." ".$obj->firstname." ".$obj->name.""; if ($obj->admin) print img_picto($langs->trans("Administrator"),'star'); print "".$obj->login.'"; if ($obj->fk_societe) { print ''.img_object($langs->trans("ShowCompany"),"company").' '.$obj->nom.''; } else if ($obj->ldap_sid) { print $langs->trans("DomainUser"); } else print $langs->trans("InternalUser"); print '".dolibarr_print_date($obj->datec)."

"; $db->free($resql); } else { dolibarr_print_error($db); } /* * Derniers groupes créés */ $max=5; $sql = "SELECT g.rowid, g.nom, g.note, ".$db->pdate("g.datec")." as datec"; $sql .= " FROM ".MAIN_DB_PREFIX."usergroup as g"; $sql .= " ORDER BY g.datec DESC"; if ($max) $sql .= " LIMIT $max"; if ( $db->query($sql) ) { $num = $db->num_rows(); print ''; print ''; $var = true; $i = 0; while ($i < $num && (! $max || $i < $max)) { $obj = $db->fetch_object(); $var=!$var; print ""; print ""; print ""; print ''; $i++; } print "
'.$langs->trans("LastGroupsCreated",$max).'
rowid\">".img_object($langs->trans("ShowGroup"),"group")." ".$obj->nom."".dolibarr_print_date($obj->datec)."

"; $db->free(); } else { dolibarr_print_error($db); } print '
'; $db->close(); llxFooter('$Date$ - $Revision$'); ?>