* Copyright (C) 2005-2015 Regis Houssin * * 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, 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, see . */ /** * \file htdocs/user/home.php * \brief Home page of users and groups management */ require '../main.inc.php'; if (! $user->rights->user->user->lire && ! $user->admin) { // Redirection vers la page de l'utilisateur header("Location: card.php?id=".$user->id); exit; } $langs->load("users"); $canreadperms=true; if (! empty($conf->global->MAIN_USE_ADVANCED_PERMS)) { $canreadperms=($user->admin || $user->rights->user->group_advance->read); } // Security check (for external users) $socid=0; if ($user->societe_id > 0) $socid = $user->societe_id; $companystatic = new Societe($db); $fuserstatic = new User($db); /* * View */ llxHeader(); print_fiche_titre($langs->trans("MenuUsersAndGroups")); //print ''; //print '
'; print '
'; // Search User $var=false; print '
'; print ''; print ''; print ''; print ''; print ''; print "
'.$langs->trans("SearchAUser").'
'; print $langs->trans("Ref").':
'.$langs->trans("Other").':

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

\n"; print '
'; } //print '
'; print '
'; /* * Last created users */ $max=10; $sql = "SELECT u.rowid, u.lastname, u.firstname, u.admin, u.login, u.fk_soc, u.datec, u.statut"; $sql.= ", u.entity"; $sql.= ", u.ldap_sid"; $sql.= ", u.photo"; $sql.= ", u.admin"; $sql.= ", u.email"; $sql.= ", u.skype"; $sql.= ", s.nom as name"; $sql.= ", s.code_client"; $sql.= ", s.canvas"; $sql.= " FROM ".MAIN_DB_PREFIX."user as u"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON u.fk_soc = s.rowid"; if (! empty($conf->multicompany->enabled) && $conf->entity == 1 && ($conf->multicompany->transverse_mode || ($user->admin && ! $user->entity))) { $sql.= " WHERE u.entity IS NOT NULL"; } else { $sql.= " WHERE u.entity IN (0,".$conf->entity.")"; } if (!empty($socid)) $sql.= " AND u.fk_soc = ".$socid; $sql.= $db->order("u.datec","DESC"); $sql.= $db->plimit($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 ''; print ''; $i++; } print "
'.$langs->trans("LastUsersCreated",min($num,$max)).'
'; $fuserstatic->id = $obj->rowid; $fuserstatic->statut = $obj->statut; $fuserstatic->lastname = $obj->lastname; $fuserstatic->firstname = $obj->firstname; $fuserstatic->login = $obj->login; $fuserstatic->photo = $obj->photo; $fuserstatic->admin = $obj->admin; $fuserstatic->email = $obj->email; $fuserstatic->skype = $obj->skype; $fuserstatic->societe_id = $obj->fk_soc; print $fuserstatic->getNomUrl(1); if (! empty($conf->multicompany->enabled) && $obj->admin && ! $obj->entity) { print img_picto($langs->trans("SuperAdministrator"),'redstar'); } else if ($obj->admin) { print img_picto($langs->trans("Administrator"),'star'); } print "'.$obj->login.'"; if ($obj->fk_soc) { $companystatic->id=$obj->fk_soc; $companystatic->name=$obj->name; $companystatic->code_client = $obj->code_client; $companystatic->canvas=$obj->canvas; print $companystatic->getNomUrl(1); } else { print $langs->trans("InternalUser"); } if ($obj->ldap_sid) { print ' ('.$langs->trans("DomainUser").')'; } $entity=$obj->entity; $entitystring=''; // TODO Set of entitystring should be done with a hook if (! empty($conf->multicompany->enabled) && is_object($mc)) { if (empty($entity)) { $entitystring=$langs->trans("AllEntities"); } else { $mc->getInfo($entity); $entitystring=$mc->label; } } print ($entitystring?' ('.$entitystring.')':''); print ''.dol_print_date($db->jdate($obj->datec),'dayhour').''; print $fuserstatic->getLibStatut(3); print '

"; $db->free($resql); } else { dol_print_error($db); } /* * Last groups created */ if ($canreadperms) { $max=5; $sql = "SELECT g.rowid, g.nom as name, g.note, g.entity, g.datec"; $sql.= " FROM ".MAIN_DB_PREFIX."usergroup as g"; if(! empty($conf->multicompany->enabled) && $conf->entity == 1 && ($conf->multicompany->transverse_mode || ($user->admin && ! $user->entity))) { $sql.= " WHERE g.entity IS NOT NULL"; } else { $sql.= " WHERE g.entity IN (0,".$conf->entity.")"; } $sql.= $db->order("g.datec","DESC"); $sql.= $db->plimit($max); $resql=$db->query($sql); if ($resql) { $colspan=2; if (! empty($conf->multicompany->enabled)) $colspan++; $num = $db->num_rows($resql); print ''; print ''; $var = true; $i = 0; while ($i < $num && (! $max || $i < $max)) { $obj = $db->fetch_object($resql); $var=!$var; print ""; print '"; if (! empty($conf->multicompany->enabled) && is_object($mc)) { $mc->getInfo($obj->entity); print ''; } print ''; print ""; $i++; } print "
'.$langs->trans("LastGroupsCreated",($num ? $num : $max)).'
'.img_object($langs->trans("ShowGroup"),"group").' '.$obj->name.''; if (! $obj->entity) { print img_picto($langs->trans("GlobalGroup"),'redstar'); } print "'; print $mc->label; print ''.dol_print_date($db->jdate($obj->datec),'dayhour').'

"; $db->free($resql); } else { dol_print_error($db); } } //print '
'; print ''; llxFooter(); $db->close();