* * 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"); $langs->load("users"); $user->getrights('users'); llxHeader(); print_titre($langs->trans("MenuUsersAndGroups")); print '
| ';
/*
* Recherche Group
*/
$var=false;
print ' \n"; /* * Recherche User */ $var=false; print ' \n"; print ' | ';
/*
* Derniers groupes créés
*
*/
$max=0;
$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); } /* * Derniers utilisateurs créés * */ $max=5; $sql = "SELECT u.rowid, u.login, u.name, u.firstname, ".$db->pdate("u.datec")." as datec"; $sql .= " FROM ".MAIN_DB_PREFIX."user as u"; $sql .= " ORDER BY u.datec DESC limit $max"; if ( $db->query($sql) ) { $num = $db->num_rows(); print '
"; $db->free(); } else { dolibarr_print_error($db); } print ' | ||||||||