dolibarr  19.0.0-dev
hierarchy.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2005 Matthieu Valleton <mv@seeschloss.org>
3  * Copyright (C) 2005 Eric Seigne <eric.seigne@ryxeo.com>
4  * Copyright (C) 2006-2015 Laurent Destailleur <eldy@users.sourceforge.net>
5  * Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
6  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
7  * Copyright (C) 2019-2021 Frédéric France <frederic.france@netlogic.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  */
22 
29 // Load Dolibarr environment
30 require '../main.inc.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/treeview.lib.php';
32 
33 // Load translation files required by page
34 $langs->loadLangs(array('users', 'companies', 'hrm', 'salaries'));
35 
36 // Security check (for external users)
37 $socid = 0;
38 if ($user->socid > 0) {
39  $socid = $user->socid;
40 }
41 
42 $optioncss = GETPOST('optioncss', 'alpha');
43 $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'userlist'; // To manage different context of search
44 $mode = GETPOST("mode", 'alpha');
45 if (empty($mode)) {
46  $mode = 'hierarchy';
47 }
48 
49 $sortfield = GETPOST('sortfield', 'aZ09comma');
50 $sortorder = GETPOST('sortorder', 'aZ09comma');
51 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
52 
53 
54 $search_statut = GETPOST('search_statut', 'int');
55 if ($search_statut == '' || $search_statut == '0') {
56  $search_statut = '1';
57 }
58 
59 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // Both test are required to be compatible with all browsers
60  $search_statut = "";
61 }
62 
63 if ($contextpage == 'employeelist') {
64  $search_employee = 1;
65 }
66 
67 $userstatic = new User($db);
68 
69 // Define value to know what current user can do on users
70 $canadduser = (!empty($user->admin) || $user->hasRight("user", "user", "write"));
71 
72 // Permission to list
73 if (isModEnabled('salaries') && $contextpage == 'employeelist' && $search_employee == 1) {
74  if (!$user->hasRight("salaries", "read")) {
76  }
77 } else {
78  if (!$user->hasRight("user", "user", "read") && empty($user->admin)) {
80  }
81 }
82 
83 $childids = $user->getAllChildIds(1);
84 
85 
86 
87 /*
88  * View
89  */
90 
91 $form = new Form($db);
92 
93 $help_url = 'EN:Module_Users|FR:Module_Utilisateurs|ES:M&oacute;dulo_Usuarios|DE:Modul_Benutzer';
94 if ($contextpage == 'employeelist' && $search_employee == 1) {
95  $title = $langs->trans("Employees");
96 } else {
97  $title = $langs->trans("Users");
98 }
99 $arrayofjs = array(
100  '/includes/jquery/plugins/jquerytreeview/jquery.treeview.js',
101  '/includes/jquery/plugins/jquerytreeview/lib/jquery.cookie.js',
102 );
103 $arrayofcss = array('/includes/jquery/plugins/jquerytreeview/jquery.treeview.css');
104 
105 llxHeader('', $title, $help_url, '', 0, 0, $arrayofjs, $arrayofcss, '', 'bodyforlist');
106 
107 
108 // Load hierarchy of users
109 $user_arbo = $userstatic->get_full_tree(0, ($search_statut != '' && $search_statut >= 0) ? "statut = ".$search_statut : '');
110 
111 
112 // Count total nb of records
113 $nbtotalofrecords = count($user_arbo);
114 
115 
116 if (!is_array($user_arbo) && $user_arbo < 0) {
117  setEventMessages($userstatic->error, $userstatic->errors, 'warnings');
118 } else {
119  // Define fulltree array
120  $fulltree = $user_arbo;
121  //var_dump($fulltree);
122  // Define data (format for treeview)
123  $data = array();
124  $data[] = array('rowid'=>0, 'fk_menu'=>-1, 'title'=>"racine", 'mainmenu'=>'', 'leftmenu'=>'', 'fk_mainmenu'=>'', 'fk_leftmenu'=>'');
125  foreach ($fulltree as $key => $val) {
126  $userstatic->id = $val['id'];
127  $userstatic->ref = $val['id'];
128  $userstatic->login = $val['login'];
129  $userstatic->firstname = $val['firstname'];
130  $userstatic->lastname = $val['lastname'];
131  $userstatic->statut = $val['statut'];
132  $userstatic->email = $val['email'];
133  $userstatic->gender = $val['gender'];
134  $userstatic->socid = $val['fk_soc'];
135  $userstatic->admin = $val['admin'];
136  $userstatic->entity = $val['entity'];
137  $userstatic->photo = $val['photo'];
138 
139  $entity = $val['entity'];
140  $entitystring = '';
141 
142  // TODO Set of entitystring should be done with a hook
143  if (isModEnabled('multicompany') && is_object($mc)) {
144  if (empty($entity)) {
145  $entitystring = $langs->trans("AllEntities");
146  } else {
147  $mc->getInfo($entity);
148  $entitystring = $mc->label;
149  }
150  }
151 
152  $li = $userstatic->getNomUrl(-1, '', 0, 1);
153  if (isModEnabled('multicompany') && $userstatic->admin && !$userstatic->entity) {
154  $li .= img_picto($langs->trans("SuperAdministrator"), 'redstar', 'class="valignmiddle paddingright paddingleft"');
155  } elseif ($userstatic->admin) {
156  $li .= img_picto($langs->trans("Administrator"), 'star', 'class="valignmiddle paddingright paddingleft"');
157  }
158  $li .= ' <span class="opacitymedium">('.$val['login'].($entitystring ? ' - '.$entitystring : '').')</span>';
159 
160  $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>';
161 
162  $data[] = array(
163  'rowid'=>$val['rowid'],
164  'fk_menu'=>$val['fk_user'],
165  'statut'=>$val['statut'],
166  'entry'=>$entry
167  );
168  }
169 
170  //var_dump($data);
171 
172  $param = "&search_statut=".urlencode($search_statut);
173  $param = "&contextpage=".urlencode($contextpage);
174 
175  $newcardbutton = '';
176  $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'));
177  $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'));
178  $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'));
179  $newcardbutton .= dolGetButtonTitleSeparator();
180  $newcardbutton .= dolGetButtonTitle($langs->trans('NewUser'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/user/card.php?action=create'.($mode == 'employee' ? '&employee=1' : '').'&leftmenu=', '', $canadduser);
181 
182  $massactionbutton = '';
183  $num = 0;
184  $limit = 0;
185 
186  print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'user', 0, $newcardbutton, '', $limit, 0, 0, 1);
187 
188  print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
189  if ($optioncss != '') {
190  print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
191  }
192  print '<input type="hidden" name="token" value="'.newToken().'">';
193  print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
194  print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
195  print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
196  print '<input type="hidden" name="page" value="'.$page.'">';
197  print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
198  print '<input type="hidden" name="mode" value="'.$mode.'">';
199 
200  print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
201  print '<table class="liste nohover centpercent">';
202 
203  print '<tr class="liste_titre_filter">';
204  print '<td class="liste_titre">&nbsp;</td>';
205  print '<td class="liste_titre">&nbsp;</td>';
206  // Status
207  print '<td class="liste_titre right">';
208  print $form->selectarray('search_statut', array('-1'=>'', '1'=>$langs->trans('Enabled')), $search_statut, 0, 0, 0, '', 0, 0, 0, '', 'minwidth75imp');
209  print '</td>';
210  print '<td class="liste_titre maxwidthsearch">';
211  $searchpicto = $form->showFilterAndCheckAddButtons(0);
212  print $searchpicto;
213  print '</td>';
214  print '</tr>';
215 
216  print '<tr class="liste_titre">';
217  print_liste_field_titre("HierarchicView");
218  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"');
219  print_liste_field_titre("Status", $_SERVER['PHP_SELF'], "", '', "", 'align="right"');
220  print_liste_field_titre('', $_SERVER["PHP_SELF"], "", '', '', '', '', '', 'maxwidthsearch ');
221  print '</tr>';
222 
223 
224  $nbofentries = (count($data) - 1);
225 
226  if ($nbofentries > 0) {
227  print '<tr><td colspan="3">';
228  tree_recur($data, $data[0], 0);
229  print '</td>';
230  print '<td></td>';
231  print '</tr>';
232  } else {
233  print '<tr class="oddeven">';
234  print '<td colspan="3">';
235  print '<table class="nobordernopadding"><tr class="nobordernopadding"><td>'.img_picto_common('', 'treemenu/branchbottom.gif').'</td>';
236  print '<td valign="middle">';
237  print $langs->trans("NoCategoryYet");
238  print '</td>';
239  print '<td>&nbsp;</td>';
240  print '</table>';
241  print '</td>';
242  print '<td></td>';
243  print '</tr>';
244  }
245 
246  print "</table>";
247  print '</div>';
248 
249  print "</form>\n";
250 }
251 
252 //
253 /*print '<script type="text/javascript">
254 jQuery(document).ready(function() {
255  function init_myfunc()
256  {
257  jQuery(".usertddisabled").hide();
258  }
259  init_myfunc();
260 });
261 </script>';
262 */
263 
264 // End of page
265 llxFooter();
266 $db->close();
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:118
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
Class to manage Dolibarr users.
Definition: user.class.php:48
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
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.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
isModEnabled($module)
Is Dolibarr module enabled.
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.