* * 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 '
| '; // Recherche User $var=false; print ''; // Recherche Group $var=false; 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 '
"; $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 '
"; $db->free(); } else { dolibarr_print_error($db); } print ' | ||||||||||||