31require
'../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/treeview.lib.php';
35$langs->loadLangs(array(
'users',
'companies',
'hrm',
'salaries'));
39if ($user->socid > 0) {
40 $socid = $user->socid;
43$optioncss =
GETPOST(
'optioncss',
'alpha');
44$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'userlist';
45$mode =
GETPOST(
"mode",
'alpha');
50$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
51$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
55$search_status =
GETPOST(
'search_status',
'intcomma');
56if ($search_status ==
'') {
60if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
65if ($contextpage ==
'employeelist') {
69$userstatic =
new User($db);
72$permissiontoadd = (!empty($user->admin) || $user->hasRight(
"user",
"user",
"write"));
75if (isModEnabled(
'salaries') && $contextpage ==
'employeelist' && $search_employee == 1) {
76 if (!$user->hasRight(
"salaries",
"read")) {
80 if (!$user->hasRight(
"user",
"user",
"read") && empty($user->admin)) {
85$childids = $user->getAllChildIds(1);
95$help_url =
'EN:Module_Users|FR:Module_Utilisateurs|ES:Módulo_Usuarios|DE:Modul_Benutzer';
96if ($contextpage ==
'employeelist' && $search_employee == 1) {
97 $title = $langs->trans(
"Employees");
99 $title = $langs->trans(
"Users");
102 '/includes/jquery/plugins/jquerytreeview/jquery.treeview.js',
103 '/includes/jquery/plugins/jquerytreeview/lib/jquery.cookie.js',
105$arrayofcss = array(
'/includes/jquery/plugins/jquerytreeview/jquery.treeview.css');
107llxHeader(
'', $title, $help_url,
'', 0, 0, $arrayofjs, $arrayofcss,
'',
'bodyforlist mod-user page-hierarchy');
110if (($search_status !=
'' && $search_status >= 0)) {
111 $filters[] =
"statut = ".((int) $search_status);
113if (($search_employee !=
'' && $search_employee >= 0)) {
114 $filters[] =
"employee = ".((int) $search_employee);
117if (!empty($filters)) {
118 $sqlfilter = implode(
' AND ', $filters);
121$user_arbo_all = $userstatic->get_full_tree(0,
'');
123 $user_arbo = $userstatic->get_full_tree(0, $sqlfilter);
125 $user_arbo = $user_arbo_all;
129$nbtotalofrecords = count($user_arbo);
132if (!is_array($user_arbo) && $user_arbo < 0) {
136 $fulltree = $user_arbo;
140 $data[0] = array(
'rowid' => 0,
'fk_menu' => -1,
'title' =>
"racine",
'mainmenu' =>
'',
'leftmenu' =>
'',
'fk_mainmenu' =>
'',
'fk_leftmenu' =>
'');
142 foreach ($fulltree as $key => $val) {
143 $userstatic->id = $val[
'id'];
144 $userstatic->ref = (string) $val[
'id'];
145 $userstatic->login = $val[
'login'];
146 $userstatic->firstname = $val[
'firstname'];
147 $userstatic->lastname = $val[
'lastname'];
148 $userstatic->status = $val[
'statut'];
149 $userstatic->email = $val[
'email'];
150 $userstatic->gender = $val[
'gender'];
151 $userstatic->socid = $val[
'fk_soc'];
152 $userstatic->admin = $val[
'admin'];
153 $userstatic->entity = $val[
'entity'];
154 $userstatic->photo = $val[
'photo'];
156 $entity = $val[
'entity'];
160 if (isModEnabled(
'multicompany') && is_object($mc)) {
161 if (empty($entity)) {
162 $entitystring = $langs->trans(
"AllEntities");
164 $mc->getInfo($entity);
165 $entitystring = $mc->label;
169 $li = $userstatic->getNomUrl(-1,
'', 0, 1);
170 if (isModEnabled(
'multicompany') && $userstatic->admin && !$userstatic->entity) {
171 $li .=
img_picto($langs->trans(
"SuperAdministratorDesc"),
'redstar',
'class="valignmiddle paddingright paddingleft"');
172 } elseif ($userstatic->admin) {
173 $li .=
img_picto($langs->trans(
"AdministratorDesc"),
'star',
'class="valignmiddle paddingright paddingleft"');
175 $li .=
' <span class="opacitymedium">('.$val[
'login'].($entitystring ?
' - '.$entitystring :
'').
')</span>';
177 $entry =
'<table class="nobordernopadding centpercent"><tr class="trtree"><td class="'.($val[
'statut'] ?
'usertdenabled' :
'usertddisabled').
'">'.$li.
'</td><td align="right" class="'.($val[
'statut'] ?
'usertdenabled' :
'usertddisabled').
'">'.$userstatic->getLibStatut(2).
'</td></tr></table>';
179 $data[$val[
'rowid']] = array(
180 'rowid' => $val[
'rowid'],
181 'fk_menu' => $val[
'fk_user'],
182 'statut' => $val[
'statut'],
188 foreach ($data as $key => $tmpdata) {
189 $idparent = $tmpdata[
'fk_menu'];
192 $parentfound = array_key_exists($idparent, $data) ? 1 : 0;
195 while (!$parentfound && $i < 50) {
197 if (!empty($user_arbo_all[$idparent])) {
198 $val = $user_arbo_all[$idparent];
199 $userstatic->id = $val[
'id'];
200 $userstatic->ref = (string) $val[
'id'];
201 $userstatic->login = $val[
'login'];
202 $userstatic->firstname = $val[
'firstname'];
203 $userstatic->lastname = $val[
'lastname'];
204 $userstatic->status = $val[
'statut'];
205 $userstatic->email = $val[
'email'];
206 $userstatic->gender = $val[
'gender'];
207 $userstatic->socid = $val[
'fk_soc'];
208 $userstatic->admin = $val[
'admin'];
209 $userstatic->entity = $val[
'entity'];
210 $userstatic->photo = $val[
'photo'];
212 $entity = $val[
'entity'];
216 if (isModEnabled(
'multicompany') && is_object($mc)) {
217 if (empty($entity)) {
218 $entitystring = $langs->trans(
"AllEntities");
220 $mc->getInfo($entity);
221 $entitystring = $mc->label;
225 $li =
'<span class="opacitymedium">';
226 $li .= $userstatic->getNomUrl(-1,
'', 0, 1);
227 if (isModEnabled(
'multicompany') && $userstatic->admin && !$userstatic->entity) {
228 $li .=
img_picto($langs->trans(
"SuperAdministrator"),
'redstar');
229 } elseif ($userstatic->admin) {
230 $li .=
img_picto($langs->trans(
"Administrator"),
'star');
232 $li .=
' <span class="opacitymedium">('.$val[
'login'].($entitystring ?
' - '.$entitystring :
'').
')</span>';
233 $li .=
' - <span class="opacitymedium">'.$langs->trans(
"ExcludedByFilter").
'</span>';
236 $entry =
'<table class="nobordernopadding centpercent"><tr class="trtree"><td class="'.($val[
'statut'] ?
'usertdenabled' :
'usertddisabled').
'">'.$li.
'</td><td align="right" class="'.($val[
'statut'] ?
'usertdenabled' :
'usertddisabled').
'">'.$userstatic->getLibStatut(2).
'</td></tr></table>';
238 $data[$idparent] = array(
239 'rowid' => $idparent,
240 'fk_menu' => $user_arbo_all[$idparent][
'fk_user'],
241 'statut' => $user_arbo_all[$idparent][
'statut'],
244 $idparent = $user_arbo_all[$idparent][
'fk_user'];
246 $parentfound = array_key_exists($idparent, $data) ? 1 : 0;
253 $data[$key][
'fk_menu'] = -2;
254 if (empty($data[-2])) {
255 $li =
'<span class="opacitymedium">'.$langs->trans(
"WarningParentIDDoesNotExistAnymore").
'</span>';
256 $entry =
'<table class="nobordernopadding centpercent"><tr class="trtree"><td class="usertddisabled">'.$li.
'</td><td align="right" class="usertddisabled"></td></tr></table>';
273 $param =
"&search_status=".urlencode($search_status);
274 $param =
"&contextpage=".urlencode($contextpage);
277 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewList'),
'',
'fa fa-bars paddingleft imgforviewmode', DOL_URL_ROOT.
'/user/list.php?mode=common'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ((empty($mode) || $mode ==
'common') ? 2 : 1), array(
'morecss' =>
'reposition'));
278 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'HierarchicView'),
'',
'fa fa-stream paddingleft imgforviewmode', DOL_URL_ROOT.
'/user/hierarchy.php?mode=hierarchy'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', (($mode ==
'hierarchy') ? 2 : 1), array(
'morecss' =>
'reposition'));
279 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewKanban'),
'',
'fa fa-th-list imgforviewmode', DOL_URL_ROOT.
'/user/list.php?mode=kanban'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ($mode ==
'kanban' ? 2 : 1), array(
'morecss' =>
'reposition'));
281 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'NewUser'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/user/card.php?action=create'.($mode ==
'employee' ?
'&employee=1' :
'').
'&leftmenu=',
'', (int) $permissiontoadd);
283 $massactionbutton =
'';
287 print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'user', 0, $newcardbutton,
'', $limit, 0, 0, 1);
289 print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
290 if ($optioncss !=
'') {
291 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
293 print
'<input type="hidden" name="token" value="'.newToken().
'">';
294 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
295 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
296 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
297 print
'<input type="hidden" name="page" value="'.$page.
'">';
298 print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
299 print
'<input type="hidden" name="mode" value="'.$mode.
'">';
301 print
'<div class="div-table-responsive">';
302 print
'<table class="liste nohover centpercent">';
304 print
'<tr class="liste_titre_filter">';
307 print
'<td class="liste_titre maxwidthsearch">';
308 $searchpicto = $form->showFilterAndCheckAddButtons(0);
312 print
'<td class="liste_titre"> </td>';
313 print
'<td class="liste_titre"> </td>';
315 print
'<td class="liste_titre right parentonrightofpage">';
316 print $form->selectarray(
'search_status', array(
'-1' =>
'',
'0' => $langs->trans(
'Disabled'),
'1' => $langs->trans(
'Enabled')), $search_status, 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth75imp onrightofpage width100');
320 print
'<td class="liste_titre maxwidthsearch">';
321 $searchpicto = $form->showFilterAndCheckAddButtons(0);
327 print
'<tr class="liste_titre">';
333 print_liste_field_titre(
'<div id="iddivjstreecontrol"><a href="#">'.
img_picto(
'',
'folder',
'class="paddingright"').
'<span class="hideonsmartphone">'.$langs->trans(
"UndoExpandAll").
'</span></a> | <a href="#">'.
img_picto(
'',
'folder-open',
'class="paddingright"').
'<span class="hideonsmartphone">'.$langs->trans(
"ExpandAll").
'</span></a></div>', $_SERVER[
'PHP_SELF'],
"",
'',
"",
'align="center"');
342 $nbofentries = (count($data) - 1);
344 if ($nbofentries > 0) {
350 print
'<td colspan="3">';
359 print
'<tr class="oddeven">';
360 print
'<td colspan="3">';
361 print
'<table class="nobordernopadding"><tr class="nobordernopadding"><td>'.img_picto_common(
'',
'treemenu/branchbottom.gif').
'</td>';
362 print
'<td valign="middle">';
363 print $langs->trans(
"NoCategoryYet");
365 print
'<td> </td>';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage Dolibarr users.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
tree_recur($tab, $pere, $rang, $iddivjstree='iddivjstree', $donoresetalreadyloaded=0, $showfk=0, $moreparam='')
Recursive function to output a tree.