31require
'../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/treeview.lib.php';
43$langs->loadLangs(array(
'users',
'companies',
'hrm',
'salaries'));
47if ($user->socid > 0) {
48 $socid = $user->socid;
51$optioncss =
GETPOST(
'optioncss',
'alpha');
52$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'userlist';
53$mode =
GETPOST(
"mode",
'alpha');
58$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
59$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
63$search_status =
GETPOST(
'search_status',
'intcomma');
64if ($search_status ==
'') {
68if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
73if ($contextpage ==
'employeelist') {
77$userstatic =
new User($db);
80$permissiontoadd = (!empty($user->admin) || $user->hasRight(
"user",
"user",
"write"));
83if (isModEnabled(
'salaries') && $contextpage ==
'employeelist' && $search_employee == 1) {
84 if (!$user->hasRight(
"salaries",
"read")) {
88 if (!$user->hasRight(
"user",
"user",
"read") && empty($user->admin)) {
93$childids = $user->getAllChildIds(1);
101$form =
new Form($db);
103$help_url =
'EN:Module_Users|FR:Module_Utilisateurs|ES:Módulo_Usuarios|DE:Modul_Benutzer';
104if ($contextpage ==
'employeelist' && $search_employee == 1) {
105 $title = $langs->trans(
"Employees");
107 $title = $langs->trans(
"Users");
110 '/includes/jquery/plugins/jquerytreeview/jquery.treeview.js',
111 '/includes/jquery/plugins/jquerytreeview/lib/jquery.cookie.js',
113$arrayofcss = array(
'/includes/jquery/plugins/jquerytreeview/jquery.treeview.css');
115llxHeader(
'', $title, $help_url,
'', 0, 0, $arrayofjs, $arrayofcss,
'',
'bodyforlist mod-user page-hierarchy');
118if (($search_status !=
'' && $search_status >= 0)) {
119 $filters[] =
"statut = ".((int) $search_status);
121if (($search_employee !=
'' && $search_employee >= 0)) {
122 $filters[] =
"employee = ".((int) $search_employee);
125if (!empty($filters)) {
126 $sqlfilter = implode(
' AND ', $filters);
129$user_arbo_all = $userstatic->get_full_tree(0,
'');
131 $user_arbo = $userstatic->get_full_tree(0, $sqlfilter);
133 $user_arbo = $user_arbo_all;
137$nbtotalofrecords = count($user_arbo);
140if (!is_array($user_arbo) && $user_arbo < 0) {
144 $fulltree = $user_arbo;
148 $data[0] = array(
'rowid' => 0,
'fk_menu' => -1,
'title' =>
'racine',
'mainmenu' =>
'',
'leftmenu' =>
'',
'fk_mainmenu' =>
'',
'fk_leftmenu' =>
'');
150 foreach ($fulltree as $key => $val) {
151 $userstatic->id = $val[
'id'];
152 $userstatic->ref = (string) $val[
'id'];
153 $userstatic->login = $val[
'login'];
154 $userstatic->firstname = $val[
'firstname'];
155 $userstatic->lastname = $val[
'lastname'];
156 $userstatic->status = $val[
'statut'];
157 $userstatic->email = $val[
'email'];
158 $userstatic->gender = $val[
'gender'];
159 $userstatic->socid = $val[
'fk_soc'];
160 $userstatic->admin = $val[
'admin'];
161 $userstatic->entity = $val[
'entity'];
162 $userstatic->photo = $val[
'photo'];
164 $entity = $val[
'entity'];
168 if (isModEnabled(
'multicompany') && is_object($mc)) {
169 if (empty($entity)) {
170 $entitystring = $langs->trans(
"AllEntities");
172 $mc->getInfo($entity);
173 $entitystring = $mc->label;
177 $li = $userstatic->getNomUrl(-1,
'', 0, 1);
178 if (isModEnabled(
'multicompany') && $userstatic->admin && !$userstatic->entity) {
179 $li .=
img_picto($langs->trans(
"SuperAdministratorDesc"),
'redstar',
'class="valignmiddle paddingright paddingleft"');
180 } elseif ($userstatic->admin) {
181 $li .=
img_picto($langs->trans(
"AdministratorDesc"),
'star',
'class="valignmiddle paddingright paddingleft"');
183 $li .=
' <span class="opacitymedium">('.$val[
'login'].($entitystring ?
' - '.$entitystring :
'').
')</span>';
185 $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>';
187 $data[$val[
'rowid']] = array(
188 'rowid' => $val[
'rowid'],
189 'fk_menu' => $val[
'fk_user'],
190 'statut' => $val[
'statut'],
196 foreach ($data as $key => $tmpdata) {
197 $idparent = $tmpdata[
'fk_menu'];
200 $parentfound = array_key_exists($idparent, $data) ? 1 : 0;
203 while (!$parentfound && $i < 50) {
205 if (!empty($user_arbo_all[$idparent])) {
206 $val = $user_arbo_all[$idparent];
207 $userstatic->id = $val[
'id'];
208 $userstatic->ref = (string) $val[
'id'];
209 $userstatic->login = $val[
'login'];
210 $userstatic->firstname = $val[
'firstname'];
211 $userstatic->lastname = $val[
'lastname'];
212 $userstatic->status = $val[
'statut'];
213 $userstatic->email = $val[
'email'];
214 $userstatic->gender = $val[
'gender'];
215 $userstatic->socid = $val[
'fk_soc'];
216 $userstatic->admin = $val[
'admin'];
217 $userstatic->entity = $val[
'entity'];
218 $userstatic->photo = $val[
'photo'];
220 $entity = $val[
'entity'];
224 if (isModEnabled(
'multicompany') && is_object($mc)) {
225 if (empty($entity)) {
226 $entitystring = $langs->trans(
"AllEntities");
228 $mc->getInfo($entity);
229 $entitystring = $mc->label;
233 $li =
'<span class="opacitymedium">';
234 $li .= $userstatic->getNomUrl(-1,
'', 0, 1);
235 if (isModEnabled(
'multicompany') && $userstatic->admin && !$userstatic->entity) {
236 $li .=
img_picto($langs->trans(
"SuperAdministrator"),
'redstar');
237 } elseif ($userstatic->admin) {
238 $li .=
img_picto($langs->trans(
"Administrator"),
'star');
240 $li .=
' <span class="opacitymedium">('.$val[
'login'].($entitystring ?
' - '.$entitystring :
'').
')</span>';
241 $li .=
' - <span class="opacitymedium">'.$langs->trans(
"ExcludedByFilter").
'</span>';
244 $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>';
246 $data[$idparent] = array(
247 'rowid' => $idparent,
248 'fk_menu' => $user_arbo_all[$idparent][
'fk_user'],
249 'statut' => $user_arbo_all[$idparent][
'statut'],
252 $idparent = $user_arbo_all[$idparent][
'fk_user'];
254 $parentfound = array_key_exists($idparent, $data) ? 1 : 0;
261 $data[$key][
'fk_menu'] = -2;
262 if (empty($data[-2])) {
263 $li =
'<span class="opacitymedium">'.$langs->trans(
"WarningParentIDDoesNotExistAnymore").
'</span>';
264 $entry =
'<table class="nobordernopadding centpercent"><tr class="trtree"><td class="usertddisabled">'.$li.
'</td><td align="right" class="usertddisabled"></td></tr></table>';
281 $param =
"&search_status=".urlencode($search_status);
282 $param =
"&contextpage=".urlencode($contextpage);
285 $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'));
286 $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'));
287 $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'));
289 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'NewUser'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/user/card.php?action=create'.($mode ==
'employee' ?
'&employee=1' :
'').
'&leftmenu=',
'', (int) $permissiontoadd);
291 $massactionbutton =
'';
295 print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'user', 0, $newcardbutton,
'', $limit, 0, 0, 1);
297 print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
298 if ($optioncss !=
'') {
299 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
301 print
'<input type="hidden" name="token" value="'.newToken().
'">';
302 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
303 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
304 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
305 print
'<input type="hidden" name="page" value="'.$page.
'">';
306 print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
307 print
'<input type="hidden" name="mode" value="'.$mode.
'">';
309 print
'<div class="div-table-responsive">';
310 print
'<table class="liste nohover centpercent">';
312 print
'<tr class="liste_titre_filter">';
315 print
'<td class="liste_titre maxwidthsearch">';
316 $searchpicto = $form->showFilterAndCheckAddButtons(0);
320 print
'<td class="liste_titre"> </td>';
321 print
'<td class="liste_titre"> </td>';
323 print
'<td class="liste_titre right parentonrightofpage">';
324 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');
328 print
'<td class="liste_titre maxwidthsearch">';
329 $searchpicto = $form->showFilterAndCheckAddButtons(0);
335 print
'<tr class="liste_titre">';
341 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"');
350 $nbofentries = (count($data) - 1);
352 if ($nbofentries > 0) {
358 print
'<td colspan="3">';
367 print
'<tr class="oddeven">';
368 print
'<td colspan="3">';
369 print
'<table class="nobordernopadding"><tr class="nobordernopadding"><td>'.img_picto_common(
'',
'treemenu/branchbottom.gif').
'</td>';
370 print
'<td valign="middle">';
371 print $langs->trans(
"NoCategoryYet");
373 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.