dolibarr  17.0.4
perms.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2002-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2002-2003 Jean-Louis Bergamo <jlb@j1b.org>
4  * Copyright (C) 2004-2020 Laurent Destailleur <eldy@users.sourceforge.net>
5  * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
6  * Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
7  * Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
8  * Copyright (C) 2020 Tobias Sekan <tobias.sekan@startmail.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <https://www.gnu.org/licenses/>.
22  */
23 
29 if (!defined('CSRFCHECK_WITH_TOKEN')) {
30  define('CSRFCHECK_WITH_TOKEN', '1'); // Force use of CSRF protection with tokens even for GET
31 }
32 
33 // Load Dolibarr environment
34 require '../main.inc.php';
35 require_once DOL_DOCUMENT_ROOT.'/core/lib/usergroups.lib.php';
36 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
37 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
38 
39 // Load translation files required by page
40 $langs->loadLangs(array('users', 'admin'));
41 
42 $id = GETPOST('id', 'int');
43 $action = GETPOST('action', 'aZ09');
44 $confirm = GETPOST('confirm', 'alpha');
45 $module = GETPOST('module', 'alpha');
46 $rights = GETPOST('rights', 'int');
47 $updatedmodulename = GETPOST('updatedmodulename', 'alpha');
48 $contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'userperms'; // To manage different context of search
49 
50 if (!isset($id) || empty($id)) {
52 }
53 
54 // Define if user can read permissions
55 $canreaduser = ($user->admin || $user->hasRight("user", "user", "read"));
56 // Define if user can modify other users and permissions
57 $caneditperms = ($user->admin || $user->hasRight("user", "user", "write"));
58 // Advanced permissions
59 if (!empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
60  $canreaduser = ($user->admin || ($user->hasRight("user", "user", "read") && $user->hasRight("user", "user_advance", "readperms")));
61  $caneditselfperms = ($user->id == $id && $user->hasRight("user", "self_advance", "writeperms"));
62  $caneditperms = (($caneditperms || $caneditselfperms) ? 1 : 0);
63 }
64 
65 // Security check
66 $socid = 0;
67 if (isset($user->socid) && $user->socid > 0) {
68  $socid = $user->socid;
69 }
70 $feature2 = (($socid && $user->hasRight("user", "self", "write")) ? '' : 'user');
71 // A user can always read its own card if not advanced perms enabled, or if he has advanced perms, except for admin
72 if ($user->id == $id && (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !$user->hasRight("user", "self_advance", "readperms") && empty($user->admin))) {
74 }
75 
76 $result = restrictedArea($user, 'user', $id, 'user&user', $feature2);
77 if ($user->id <> $id && !$canreaduser) {
79 }
80 
81 $object = new User($db);
82 $object->fetch($id, '', '', 1);
83 $object->getrights();
84 
85 $entity = $conf->entity;
86 
87 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
88 $hookmanager->initHooks(array('usercard', 'userperms', 'globalcard'));
89 
90 
91 /*
92  * Actions
93  */
94 
95 $parameters = array('socid'=>$socid);
96 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
97 if ($reshook < 0) {
98  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
99 }
100 
101 if (empty($reshook)) {
102  if ($action == 'addrights' && $caneditperms && $confirm == 'yes') {
103  $edituser = new User($db);
104  $edituser->fetch($object->id);
105  $result = $edituser->addrights($rights, $module, '', $entity);
106  if ($result < 0) {
107  setEventMessages($edituser->error, $edituser->errors, 'errors');
108  }
109 
110  // If we are changing our own permissions, we reload permissions and menu
111  if ($object->id == $user->id) {
112  $user->clearrights();
113  $user->getrights();
114  $menumanager->loadMenu();
115  }
116 
117  $object->clearrights();
118  $object->getrights();
119  }
120 
121  if ($action == 'delrights' && $caneditperms && $confirm == 'yes') {
122  $edituser = new User($db);
123  $edituser->fetch($object->id);
124  $result = $edituser->delrights($rights, $module, '', $entity);
125  if ($result < 0) {
126  setEventMessages($edituser->error, $edituser->errors, 'errors');
127  }
128 
129  // If we are changing our own permissions, we reload permissions and menu
130  if ($object->id == $user->id) {
131  $user->clearrights();
132  $user->getrights();
133  $menumanager->loadMenu();
134  }
135 
136  $object->clearrights();
137  $object->getrights();
138  }
139 }
140 
141 
142 /*
143  * View
144  */
145 
146 $form = new Form($db);
147 
148 $person_name = !empty($object->firstname) ? $object->lastname.", ".$object->firstname : $object->lastname;
149 $title = $person_name." - ".$langs->trans('Permissions');
150 $help_url = '';
151 llxHeader('', $title, $help_url);
152 
153 $head = user_prepare_head($object);
154 
155 $title = $langs->trans("User");
156 print dol_get_fiche_head($head, 'rights', $title, -1, 'user');
157 
158 
159 $db->begin();
160 
161 // Search all modules with permission and reload permissions def.
162 $modules = array();
163 $modulesdir = dolGetModulesDirs();
164 
165 foreach ($modulesdir as $dir) {
166  $handle = @opendir(dol_osencode($dir));
167  if (is_resource($handle)) {
168  while (($file = readdir($handle)) !== false) {
169  if (is_readable($dir.$file) && substr($file, 0, 3) == 'mod' && substr($file, dol_strlen($file) - 10) == '.class.php') {
170  $modName = substr($file, 0, dol_strlen($file) - 10);
171 
172  if ($modName) {
173  include_once $dir.$file;
174  $objMod = new $modName($db);
175 
176  // Load all lang files of module
177  if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
178  foreach ($objMod->langfiles as $domain) {
179  $langs->load($domain);
180  }
181  }
182  // Load all permissions
183  if ($objMod->rights_class) {
184  $ret = $objMod->insert_permissions(0, $entity);
185  $modules[$objMod->rights_class] = $objMod;
186  //print "modules[".$objMod->rights_class."]=$objMod;";
187  }
188  }
189  }
190  }
191  }
192 }
193 
194 $db->commit();
195 
196 // Read permissions of user
197 $permsuser = array();
198 
199 $sql = "SELECT DISTINCT ur.fk_id";
200 $sql .= " FROM ".MAIN_DB_PREFIX."user_rights as ur";
201 $sql .= " WHERE ur.entity = ".((int) $entity);
202 $sql .= " AND ur.fk_user = ".((int) $object->id);
203 
204 dol_syslog("get user perms", LOG_DEBUG);
205 $result = $db->query($sql);
206 if ($result) {
207  $num = $db->num_rows($result);
208  $i = 0;
209  while ($i < $num) {
210  $obj = $db->fetch_object($result);
211  array_push($permsuser, $obj->fk_id);
212  $i++;
213  }
214  $db->free($result);
215 } else {
216  dol_print_error($db);
217 }
218 
219 // Read the permissions of a user inherited by its groups
220 $permsgroupbyentity = array();
221 
222 $sql = "SELECT DISTINCT gr.fk_id, gu.entity"; // fk_id are permission id and entity is entity of the group
223 $sql .= " FROM ".MAIN_DB_PREFIX."usergroup_rights as gr,";
224 $sql .= " ".MAIN_DB_PREFIX."usergroup_user as gu"; // all groups of a user
225 $sql .= " WHERE gr.entity = ".((int) $entity);
226 $sql .= " AND gu.entity =".((int) $entity);
227 $sql .= " AND gr.fk_usergroup = gu.fk_usergroup";
228 $sql .= " AND gu.fk_user = ".((int) $object->id);
229 
230 dol_syslog("get user perms", LOG_DEBUG);
231 $result = $db->query($sql);
232 if ($result) {
233  $num = $db->num_rows($result);
234  $i = 0;
235  while ($i < $num) {
236  $obj = $db->fetch_object($result);
237  if (!isset($permsgroupbyentity[$obj->entity])) {
238  $permsgroupbyentity[$obj->entity] = array();
239  }
240  array_push($permsgroupbyentity[$obj->entity], $obj->fk_id);
241  $i++;
242  }
243  $db->free($result);
244 } else {
245  dol_print_error($db);
246 }
247 
248 
249 
250 /*
251  * Part to add/remove permissions
252  */
253 
254 $linkback = '';
255 
256 if ($user->hasRight("user", "user", "read") || $user->admin) {
257  $linkback = '<a href="'.DOL_URL_ROOT.'/user/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
258 }
259 
260 $morehtmlref = '<a href="'.DOL_URL_ROOT.'/user/vcard.php?id='.$object->id.'" class="refid">';
261 $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
262 $morehtmlref .= '</a>';
263 
264 dol_banner_tab($object, 'id', $linkback, $user->hasRight("user", "user", "read") || $user->admin, 'rowid', 'ref', $morehtmlref);
265 
266 
267 print '<div class="fichecenter">';
268 
269 print '<div class="underbanner clearboth"></div>';
270 print '<table class="border centpercent tableforfield">';
271 
272 // Login
273 print '<tr><td id="anchorforperms" class="titlefield">'.$langs->trans("Login").'</td>';
274 if (!empty($object->ldap_sid) && $object->statut == 0) {
275  print '<td class="error">';
276  print $langs->trans("LoginAccountDisableInDolibarr");
277  print '</td>';
278 } else {
279  print '<td>';
280  $addadmin = '';
281  if (property_exists($object, 'admin')) {
282  if (isModEnabled('multicompany') && !empty($object->admin) && empty($object->entity)) {
283  $addadmin .= img_picto($langs->trans("SuperAdministratorDesc"), "redstar", 'class="paddingleft"');
284  } elseif (!empty($object->admin)) {
285  $addadmin .= img_picto($langs->trans("AdministratorDesc"), "star", 'class="paddingleft"');
286  }
287  }
288  print showValueWithClipboardCPButton($object->login).$addadmin;
289  print '</td>';
290 }
291 print '</tr>'."\n";
292 
293 // Type
294 print '<tr><td>';
295 $text = $langs->trans("Type");
296 print $form->textwithpicto($text, $langs->trans("InternalExternalDesc"));
297 print '</td><td>';
298 $type = $langs->trans("Internal");
299 if ($object->socid > 0) {
300  $type = $langs->trans("External");
301 }
302 print '<span class="badgeneutral">';
303 print $type;
304 if ($object->ldap_sid) {
305  print ' ('.$langs->trans("DomainUser").')';
306 }
307 print '</span>';
308 print '</td></tr>'."\n";
309 
310 print '</table>';
311 
312 print '</div>';
313 print '<br>';
314 
315 if ($user->admin) {
316  print info_admin($langs->trans("WarningOnlyPermissionOfActivatedModules"));
317 }
318 // If edited user is an extern user, we show warning for external users
319 if (!empty($object->socid)) {
320  print info_admin(showModulesExludedForExternal($modules))."\n";
321 }
322 
323 $parameters = array('permsgroupbyentity'=>$permsgroupbyentity);
324 $reshook = $hookmanager->executeHooks('insertExtraHeader', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
325 if ($reshook < 0) {
326  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
327 }
328 
329 $listofexpandedmodules = array();
330 
331 
332 print "\n";
333 print '<div class="div-table-responsive-no-min">';
334 print '<table class="noborder centpercent">';
335 
336 print '<tr class="liste_titre">';
337 print '<td>'.$langs->trans("Module").'</td>';
338 if ($caneditperms) {
339  print '<td class="center nowrap">';
340  print '<a class="reposition commonlink addexpandedmodulesinparamlist" title="'.dol_escape_htmltag($langs->trans("All")).'" alt="'.dol_escape_htmltag($langs->trans("All")).'" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=addrights&token='.newToken().'&entity='.$entity.'&module=allmodules&confirm=yes">'.$langs->trans("All")."</a>";
341  print ' / ';
342  print '<a class="reposition commonlink addexpandedmodulesinparamlist" title="'.dol_escape_htmltag($langs->trans("None")).'" alt="'.dol_escape_htmltag($langs->trans("None")).'" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delrights&token='.newToken().'&entity='.$entity.'&module=allmodules&confirm=yes">'.$langs->trans("None")."</a>";
343  print '</td>';
344 } else {
345  print '<td></td>';
346 }
347 print '<td></td>';
348 print '<td></td>';
349 print '<td class="right nowrap">';
350 print '<a class="showallperms" title="'.dol_escape_htmltag($langs->trans("ShowAllPerms")).'" alt="'.dol_escape_htmltag($langs->trans("ShowAllPerms")).'" href="#">'.img_picto('', 'folder-open', 'class="paddingright"').'<span class="hideonsmartphone">'.$langs->trans("ExpandAll").'</span></a>';
351 print ' | ';
352 print '<a class="hideallperms" title="'.dol_escape_htmltag($langs->trans("HideAllPerms")).'" alt="'.dol_escape_htmltag($langs->trans("HideAllPerms")).'" href="#">'.img_picto('', 'folder', 'class="paddingright"').'<span class="hideonsmartphone">'.$langs->trans("UndoExpandAll").'</span></a>';
353 print '</td>';
354 print '</tr>'."\n";
355 
356 
357 // Fix bad value for module_position in table
358 // ------------------------------------------
359 $sql = "SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
360 $sql .= " FROM ".MAIN_DB_PREFIX."rights_def as r";
361 $sql .= " WHERE r.libelle NOT LIKE 'tou%'"; // On ignore droits "tous"
362 $sql .= " AND r.entity = ".((int) $entity);
363 $sql .= " ORDER BY r.family_position, r.module_position, r.module, r.id";
364 
365 $result = $db->query($sql);
366 if ($result) {
367  $num = $db->num_rows($result);
368  $i = 0;
369  $oldmod = '';
370 
371  while ($i < $num) {
372  $obj = $db->fetch_object($result);
373 
374  // If line is for a module that does not exist anymore (absent of includes/module), we ignore it
375  if (!isset($obj->module) || empty($modules[$obj->module])) {
376  $i++;
377  continue;
378  }
379 
380  // Special cases
381  if (isModEnabled("reception")) {
382  // The 2 permissions in fournisseur modules are replaced by permissions into reception module
383  if ($obj->module == 'fournisseur' && $obj->perms == 'commande' && $obj->subperms == 'receptionner') {
384  $i++;
385  continue;
386  }
387  if ($obj->module == 'fournisseur' && $obj->perms == 'commande_advance' && $obj->subperms == 'check') {
388  $i++;
389  continue;
390  }
391  }
392 
393  $objMod = $modules[$obj->module];
394 
395  // Save field module_position in database if value is wrong
396  if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $obj->module_position < 100000)) {
397  if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
398  // TODO Define familyposition
399  //$familyposition = $modules[$obj->module]->family_position;
400  $familyposition = 0;
401 
402  $newmoduleposition = $modules[$obj->module]->module_position;
403 
404  // Correct $newmoduleposition position for external modules
405  $objMod = $modules[$obj->module];
406  if (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $newmoduleposition < 100000) {
407  $newmoduleposition += 100000;
408  }
409 
410  $sqlupdate = 'UPDATE '.MAIN_DB_PREFIX."rights_def SET module_position = ".((int) $newmoduleposition).",";
411  $sqlupdate .= " family_position = ".((int) $familyposition);
412  $sqlupdate .= " WHERE module_position = ".((int) $obj->module_position)." AND module = '".$db->escape($obj->module)."'";
413 
414  $db->query($sqlupdate);
415  }
416  }
417  }
418 }
419 
420 
421 
422 //print "xx".$conf->global->MAIN_USE_ADVANCED_PERMS;
423 $sql = "SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
424 $sql .= " FROM ".MAIN_DB_PREFIX."rights_def as r";
425 $sql .= " WHERE r.libelle NOT LIKE 'tou%'"; // On ignore droits "tous"
426 $sql .= " AND r.entity = ".((int) $entity);
427 if (empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
428  $sql .= " AND r.perms NOT LIKE '%_advance'"; // Hide advanced perms if option is not enabled
429 }
430 $sql .= " ORDER BY r.family_position, r.module_position, r.module, r.id";
431 
432 $result = $db->query($sql);
433 if ($result) {
434  $num = $db->num_rows($result);
435  $i = 0; $j = 0;
436  $oldmod = '';
437 
438  $cookietohidegroup = (empty($_COOKIE["DOLUSER_PERMS_HIDE_GRP"]) ? '' : preg_replace('/^,/', '', $_COOKIE["DOLUSER_PERMS_HIDE_GRP"]));
439  $cookietohidegrouparray = explode(',', $cookietohidegroup);
440  //var_dump($cookietohidegrouparray);
441 
442  while ($i < $num) {
443  $obj = $db->fetch_object($result);
444 
445  // If line is for a module that does not exist anymore (absent of includes/module), we ignore it
446  if (empty($modules[$obj->module])) {
447  $i++;
448  continue;
449  }
450 
451  // Special cases
452  if (isModEnabled("reception")) {
453  // The 2 permission in fournisseur modules has been replaced by permissions into reception module
454  if ($obj->module == 'fournisseur' && $obj->perms == 'commande' && $obj->subperms == 'receptionner') {
455  $i++;
456  continue;
457  }
458  if ($obj->module == 'fournisseur' && $obj->perms == 'commande_advance' && $obj->subperms == 'check') {
459  $i++;
460  continue;
461  }
462  }
463 
464  $objMod = $modules[$obj->module];
465 
466  // Save field module_position in database if value is wrong
467  /*
468  if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $obj->module_position < 100000)) {
469  if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
470  // TODO Define familyposition
471  //$familyposition = $modules[$obj->module]->family_position;
472  $familyposition = 0;
473 
474  $newmoduleposition = $modules[$obj->module]->module_position;
475 
476  // Correct $newmoduleposition position for external modules
477  $objMod = $modules[$obj->module];
478  if (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $newmoduleposition < 100000) {
479  $newmoduleposition += 100000;
480  }
481 
482  $sqlupdate = 'UPDATE '.MAIN_DB_PREFIX."rights_def SET module_position = ".((int) $newmoduleposition).",";
483  $sqlupdate .= " family_position = ".((int) $familyposition);
484  $sqlupdate .= " WHERE module_position = ".((int) $obj->module_position)." AND module = '".$db->escape($obj->module)."'";
485 
486  $db->query($sqlupdate);
487  }
488  }
489  */
490 
491  if (GETPOSTISSET('forbreakperms_'.$obj->module)) {
492  $ishidden = GETPOST('forbreakperms_'.$obj->module, 'int');
493  } elseif (in_array($j, $cookietohidegrouparray)) { // If j is among list of hidden group
494  $ishidden = 1;
495  } else {
496  $ishidden = 0;
497  }
498  $isexpanded = ! $ishidden;
499  //var_dump("isexpanded=".$isexpanded);
500 
501  $permsgroupbyentitypluszero = array();
502  if (!empty($permsgroupbyentity[0])) {
503  $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[0]);
504  }
505  if (!empty($permsgroupbyentity[$entity])) {
506  $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[$entity]);
507  }
508  //var_dump($permsgroupbyentitypluszero);
509 
510  // Break found, it's a new module to catch
511  if (isset($obj->module) && ($oldmod <> $obj->module)) {
512  $oldmod = $obj->module;
513 
514  $j++;
515  if (GETPOSTISSET('forbreakperms_'.$obj->module)) {
516  $ishidden = GETPOST('forbreakperms_'.$obj->module, 'int');
517  } elseif (in_array($j, $cookietohidegrouparray)) { // If j is among list of hidden group
518  $ishidden = 1;
519  } else {
520  $ishidden = 0;
521  }
522  $isexpanded = ! $ishidden;
523  //var_dump('$obj->module='.$obj->module.' isexpanded='.$isexpanded);
524 
525  // Break detected, we get objMod
526  $objMod = $modules[$obj->module];
527  $picto = ($objMod->picto ? $objMod->picto : 'generic');
528 
529  // Show break line
530  print '<tr class="oddeven trforbreakperms" data-hide-perms="'.$obj->module.'" data-j="'.$j.'">';
531  // Picto and label of module
532  print '<td class="maxwidthonsmartphone tdoverflowonsmartphone tdforbreakperms" data-hide-perms="'.$obj->module.'">';
533  print '<input type="hidden" name="forbreakperms_'.$obj->module.'" id="idforbreakperms_'.$obj->module.'" css="cssforfieldishiden" data-j="'.$j.'" value="'.($isexpanded ? '0' : "1").'">';
534  print img_object('', $picto, 'class="pictoobjectwidth paddingright"').' '.$objMod->getName();
535  print '<a name="'.$objMod->getName().'"></a>';
536  print '</td>';
537  // Permission and tick (2 columns)
538  if (($caneditperms && empty($objMod->rights_admin_allowed)) || empty($object->admin)) {
539  if ($caneditperms) {
540  print '<td class="center wraponsmartphone">';
541  print '<span class="permtohide_'.$obj->module.'" '.(!$isexpanded ? ' style="display:none"' : '').'>';
542  print '<a class="reposition alink addexpandedmodulesinparamlist" title="'.dol_escape_htmltag($langs->trans("All")).'" alt="'.dol_escape_htmltag($langs->trans("All")).'" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=addrights&token='.newToken().'&entity='.$entity.'&module='.$obj->module.'&confirm=yes&updatedmodulename='.$obj->module.'">'.$langs->trans("All")."</a>";
543  print ' / ';
544  print '<a class="reposition alink addexpandedmodulesinparamlist" title="'.dol_escape_htmltag($langs->trans("None")).'" alt="'.dol_escape_htmltag($langs->trans("None")).'" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delrights&token='.newToken().'&entity='.$entity.'&module='.$obj->module.'&confirm=yes&updatedmodulename='.$obj->module.'">'.$langs->trans("None")."</a>";
545  print '</span>';
546  print '</td>';
547  print '<td class="tdforbreakperms" data-hide-perms="'.$obj->module.'">';
548  print '</td>';
549  } else {
550  print '<td class="tdforbreakperms" data-hide-perms="'.$obj->module.'">&nbsp;</td>';
551  print '<td class="tdforbreakperms" data-hide-perms="'.$obj->module.'">&nbsp;</td>';
552  }
553  } else {
554  if ($caneditperms) {
555  print '<td class="center wraponsmartphone">';
556  /*print '<a class="reposition alink" title="'.dol_escape_htmltag($langs->trans("All")).'" alt="'.dol_escape_htmltag($langs->trans("All")).'" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=addrights&token='.newToken().'&entity='.$entity.'&module='.$obj->module.'&confirm=yes&updatedmodulename='.$obj->module.'">'.$langs->trans("All")."</a>";
557  print ' / ';
558  print '<a class="reposition alink" title="'.dol_escape_htmltag($langs->trans("None")).'" alt="'.dol_escape_htmltag($langs->trans("None")).'" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delrights&token='.newToken().'&entity='.$entity.'&module='.$obj->module.'&confirm=yes&updatedmodulename='.$obj->module.'">'.$langs->trans("None")."</a>";
559  */
560  print '</td>';
561  print '<td class="tdforbreakperms" data-hide-perms="'.$obj->module.'">';
562  print '</td>';
563  } else {
564  print '<td class="right tdforbreakperms" data-hide-perms="'.$obj->module.'"></td>';
565  print '<td class="tdforbreakperms" data-hide-perms="'.$obj->module.'">&nbsp;</td>';
566  }
567  }
568  // Description of permission (2 columns)
569  print '<td class="tdforbreakperms" data-hide-perms="'.$obj->module.'">&nbsp;</td>';
570  print '<td class="maxwidthonsmartphone right tdforbreakperms" data-hide-perms="'.$obj->module.'">';
571  print '<div class="switchfolderperms folderperms_'.$obj->module.'"'.($isexpanded ? ' style="display:none;"' : '').'>';
572  print img_picto('', 'folder', 'class="marginright"');
573  print '</div>';
574  print '<div class="switchfolderperms folderopenperms_'.$obj->module.'"'.(!$isexpanded ? ' style="display:none;"' : '').'>';
575  print img_picto('', 'folder-open', 'class="marginright"');
576  print '</div>';
577  print '</td>'; //Add picto + / - when open en closed
578  print '</tr>'."\n";
579  }
580 
581  print '<!-- '.$obj->module.'->'.$obj->perms.($obj->subperms ? '->'.$obj->subperms : '').' -->'."\n";
582  print '<tr class="oddeven trtohide_'.$obj->module.'"'.(!$isexpanded ? ' style="display:none"' : '').'>';
583 
584  // Picto and label of module
585  print '<td class="maxwidthonsmartphone tdoverflowonsmartphone">';
586  print '</td>';
587 
588  // Permission and tick (2 columns)
589  if (!empty($object->admin) && !empty($objMod->rights_admin_allowed)) { // Permission granted because admin
590  if ($caneditperms) {
591  print '<td class="center">'.img_picto($langs->trans("Administrator"), 'star').'</td>';
592  } else {
593  print '<td>&nbsp;</td>';
594  }
595  print '<td class="center nowrap">';
596  if (!$caneditperms) {
597  print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
598  //print img_picto($langs->trans("Active"), 'tick');
599  }
600  print '</td>';
601  } elseif (in_array($obj->id, $permsuser)) { // Permission granted by user
602  if ($caneditperms) {
603  print '<td class="center">';
604  print '<a class="reposition addexpandedmodulesinparamlist" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delrights&token='.newToken().'&entity='.$entity.'&rights='.$obj->id.'&confirm=yes&updatedmodulename='.$obj->module.'">';
605  //print img_edit_remove($langs->trans("Remove"));
606  print img_picto($langs->trans("Remove"), 'switch_on');
607  print '</a></td>';
608  } else {
609  print '<td>&nbsp;</td>';
610  }
611  print '<td class="center nowrap">';
612  if (!$caneditperms) {
613  print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
614  //print img_picto($langs->trans("Active"), 'tick');
615  }
616  print '</td>';
617  } elseif (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero)) {
618  if (in_array($obj->id, $permsgroupbyentitypluszero)) { // Permission granted by group
619  if ($caneditperms) {
620  print '<td class="center">';
621  print $form->textwithtooltip($langs->trans("Inherited"), $langs->trans("PermissionInheritedFromAGroup"));
622  print '</td>';
623  } else {
624  print '<td>&nbsp;</td>';
625  }
626  print '<td class="center nowrap">';
627  print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
628  //print img_picto($langs->trans("Active"), 'tick');
629  print '</td>';
630  } else {
631  // Do not own permission
632  if ($caneditperms) {
633  print '<td class="center">';
634  print '<a class="reposition addexpandedmodulesinparamlist" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=addrights&entity='.$entity.'&rights='.$obj->id.'&confirm=yes&token='.newToken().'&updatedmodulename='.$obj->module.'">';
635  //print img_edit_add($langs->trans("Add"));
636  print img_picto($langs->trans("Add"), 'switch_off');
637  print '</a></td>';
638  } else {
639  print '<td>';
640  print '&nbsp;';
641  print '</td>';
642  }
643  print '<td>&nbsp;</td>';
644  }
645  } else {
646  // Do not own permission
647  if ($caneditperms) {
648  print '<td class="center">';
649  print '<a class="reposition addexpandedmodulesinparamlist" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=addrights&entity='.$entity.'&rights='.$obj->id.'&confirm=yes&token='.newToken().'&updatedmodulename='.$obj->module.'">';
650  //print img_edit_add($langs->trans("Add"));
651  print img_picto($langs->trans("Add"), 'switch_off');
652  print '</a></td>';
653  } else {
654  print '<td>&nbsp;</td>';
655  }
656  print '<td class="center">';
657  if (!$caneditperms) {
658  print img_picto($langs->trans("Disabled"), 'switch_off', '', false, 0, 0, '', 'opacitymedium');
659  }
660  //print '&nbsp;';
661  print '</td>';
662  }
663 
664  // Description of permission (2 columns)
665  $permlabel = (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ($langs->trans("PermissionAdvanced".$obj->id) != ("PermissionAdvanced".$obj->id)) ? $langs->trans("PermissionAdvanced".$obj->id) : (($langs->trans("Permission".$obj->id) != ("Permission".$obj->id)) ? $langs->trans("Permission".$obj->id) : $langs->trans($obj->label)));
666  if (!$user->admin) {
667  print '<td colspan="2">';
668  } else {
669  print '<td>';
670  }
671  print $permlabel;
672  if (!empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
673  if (preg_match('/_advance$/', $obj->perms)) {
674  print ' <span class="opacitymedium">('.$langs->trans("AdvancedModeOnly").')</span>';
675  }
676  }
677  print '</td>';
678 
679  // Permission id
680  if ($user->admin) {
681  print '<td class="right">';
682  $htmltext = $langs->trans("ID").': '.$obj->id;
683  $htmltext .= '<br>'.$langs->trans("Permission").': user->rights->'.$obj->module.'->'.$obj->perms.($obj->subperms ? '->'.$obj->subperms : '');
684  print $form->textwithpicto('', $htmltext);
685  //print '<span class="opacitymedium">'.$obj->id.'</span>';
686  print '</td>';
687  }
688 
689  print '</tr>'."\n";
690 
691  $i++;
692  }
693 } else {
694  dol_print_error($db);
695 }
696 print '</table>';
697 print '</div>';
698 
699 print '<script>';
700 print '$(".tdforbreakperms:not(.alink)").on("click", function(){
701  console.log("Click on tdforbreakperms");
702  moduletohide = $(this).data("hide-perms");
703  j = $(this).data("j");
704  if ($("#idforbreakperms_"+moduletohide).val() == 1) {
705  console.log("idforbreakperms_"+moduletohide+" has value hidden=1");
706  $(".trtohide_"+moduletohide).show();
707  $(".permtoshow_"+moduletohide).hide();
708  $(".permtohide_"+moduletohide).show();
709  $(".folderperms_"+moduletohide).hide();
710  $(".folderopenperms_"+moduletohide).show();
711  $("#idforbreakperms_"+moduletohide).val("0");
712  } else {
713  console.log("idforbreakperms_"+moduletohide+" has value hidden=0");
714  $(".trtohide_"+moduletohide).hide();
715  $(".folderopenperms_"+moduletohide).hide();
716  $(".folderperms_"+moduletohide).show();
717  $(".permtoshow_"+moduletohide).show();
718  $(".permtohide_"+moduletohide).hide();
719  $("#idforbreakperms_"+moduletohide).val("1");
720  }
721 
722  // Now rebuild the value for cookie
723  var hideuserperm="";
724  $(".trforbreakperms").each(function(index) {
725  //console.log( index + ": " + $( this ).data("j") + " " + $( this ).data("hide-perms") + " " + $("input[data-j="+(index+1)+"]").val());
726  if ($("input[data-j="+(index+1)+"]").val() == 1) {
727  hideuserperm=hideuserperm+","+(index+1);
728  }
729  });
730  // set cookie by js
731  date = new Date(); date.setTime(date.getTime()+(30*86400000));
732  if (hideuserperm) {
733  console.log("set cookie DOLUSER_PERMS_HIDE_GRP="+hideuserperm);
734  document.cookie = "DOLUSER_PERMS_HIDE_GRP=" + hideuserperm + "; expires=" + date.toGMTString() + "; path=/ ";
735  } else {
736  console.log("delete cookie DOLUSER_PERMS_HIDE_GRP");
737  document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
738  }
739 });';
740 print "\n";
741 
742 // Button expand / collapse all
743 print '$(".showallperms").on("click", function(){
744  console.log("Click on showallperms");
745 
746  console.log("delete cookie DOLUSER_PERMS_HIDE_GRP from showallperms click");
747  document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
748  $(".tdforbreakperms").each( function(){
749  moduletohide = $(this).data("hide-perms");
750  //console.log(moduletohide);
751  if ($("#idforbreakperms_"+moduletohide).val() != 0) {
752  $(this).trigger("click"); // emulate the click, so the cooki will be resaved
753  }
754  })
755 });
756 
757 $(".hideallperms").on("click", function(){
758  console.log("Click on hideallperms");
759 
760  $(".tdforbreakperms").each( function(){
761  moduletohide = $(this).data("hide-perms");
762  //console.log(moduletohide);
763  if ($("#idforbreakperms_"+moduletohide).val() != 1) {
764  $(this).trigger("click"); // emulate the click, so the cooki will be resaved
765  }
766  })
767 });';
768 print "\n";
769 print '</script>';
770 
771 print '<style>';
772 print '.switchfolderperms{
773  cursor: pointer;
774 }';
775 print '</style>';
776 
777 $parameters = array();
778 $reshook = $hookmanager->executeHooks('insertExtraFooter', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
779 if ($reshook < 0) {
780  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
781 }
782 
783 
784 print dol_get_fiche_end();
785 
786 // End of page
787 llxFooter();
788 $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
showModulesExludedForExternal($modules)
Show array with constants to edit.
Definition: admin.lib.php:1838
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:47
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
dolGetModulesDirs($subdir='')
Return list of modules directories.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='')
Show information for admin users or standard users.
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.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
$parameters
Actions.
Definition: perms.php:85
user_prepare_head(User $object)
Prepare array with list of tabs.