dolibarr  19.0.0-dev
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 1 = 1";
226 // A very strange business rules. Must be same than into user->getrights() user/perms.php and user/group/perms.php
227 if (!empty($conf->global->MULTICOMPANY_BACKWARD_COMPATIBILITY)) {
228  if (isModEnabled('multicompany') && !empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE)) {
229  $sql .= " AND gu.entity IN (0,".$conf->entity.")";
230  } else {
231  //$sql .= " AND r.entity = ".((int) $conf->entity);
232  }
233 } else {
234  $sql .= " AND gr.entity = ".((int) $conf->entity); // Only groups created in current entity
235  // The entity on the table usergroup_user should be useless and should never be used because it is alreay into gr and r.
236  // but when using MULTICOMPANY_TRANSVERSE_MODE, we may insert record that make rubbish result due to duplicate record of
237  // other entities, so we are forced to add a filter here
238  $sql .= " AND gu.entity IN (0,".$conf->entity.")";
239  //$sql .= " AND r.entity = ".((int) $conf->entity); // Only permission of modules enabled in current entity
240 }
241 // End of strange business rule
242 $sql .= " AND gr.fk_usergroup = gu.fk_usergroup";
243 $sql .= " AND gu.fk_user = ".((int) $object->id);
244 
245 dol_syslog("get user perms", LOG_DEBUG);
246 $result = $db->query($sql);
247 if ($result) {
248  $num = $db->num_rows($result);
249  $i = 0;
250  while ($i < $num) {
251  $obj = $db->fetch_object($result);
252  if (!isset($permsgroupbyentity[$obj->entity])) {
253  $permsgroupbyentity[$obj->entity] = array();
254  }
255  array_push($permsgroupbyentity[$obj->entity], $obj->fk_id);
256  $i++;
257  }
258  $db->free($result);
259 } else {
260  dol_print_error($db);
261 }
262 
263 
264 
265 /*
266  * Part to add/remove permissions
267  */
268 
269 $linkback = '';
270 
271 if ($user->hasRight("user", "user", "read") || $user->admin) {
272  $linkback = '<a href="'.DOL_URL_ROOT.'/user/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
273 }
274 
275 $morehtmlref = '<a href="'.DOL_URL_ROOT.'/user/vcard.php?id='.$object->id.'&output=file&file='.urlencode(dol_sanitizeFileName($object->getFullName($langs).'.vcf')).'" class="refid" rel="noopener">';
276 $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
277 $morehtmlref .= '</a>';
278 
279 $urltovirtualcard = '/user/virtualcard.php?id='.((int) $object->id);
280 $morehtmlref .= dolButtonToOpenUrlInDialogPopup('publicvirtualcard', $langs->trans("PublicVirtualCardUrl").' - '.$object->getFullName($langs), img_picto($langs->trans("PublicVirtualCardUrl"), 'card', 'class="valignmiddle marginleftonly paddingrightonly"'), $urltovirtualcard, '', 'nohover');
281 
282 dol_banner_tab($object, 'id', $linkback, $user->hasRight("user", "user", "read") || $user->admin, 'rowid', 'ref', $morehtmlref);
283 
284 
285 print '<div class="fichecenter">';
286 
287 print '<div class="underbanner clearboth"></div>';
288 print '<table class="border centpercent tableforfield">';
289 
290 // Login
291 print '<tr><td id="anchorforperms" class="titlefield">'.$langs->trans("Login").'</td>';
292 if (!empty($object->ldap_sid) && $object->statut == 0) {
293  print '<td class="error">';
294  print $langs->trans("LoginAccountDisableInDolibarr");
295  print '</td>';
296 } else {
297  print '<td>';
298  $addadmin = '';
299  if (property_exists($object, 'admin')) {
300  if (isModEnabled('multicompany') && !empty($object->admin) && empty($object->entity)) {
301  $addadmin .= img_picto($langs->trans("SuperAdministratorDesc"), "redstar", 'class="paddingleft"');
302  } elseif (!empty($object->admin)) {
303  $addadmin .= img_picto($langs->trans("AdministratorDesc"), "star", 'class="paddingleft"');
304  }
305  }
306  print showValueWithClipboardCPButton($object->login).$addadmin;
307  print '</td>';
308 }
309 print '</tr>'."\n";
310 
311 // Type
312 print '<tr><td>';
313 $text = $langs->trans("Type");
314 print $form->textwithpicto($text, $langs->trans("InternalExternalDesc"));
315 print '</td><td>';
316 $type = $langs->trans("Internal");
317 if ($object->socid > 0) {
318  $type = $langs->trans("External");
319 }
320 print '<span class="badgeneutral">';
321 print $type;
322 if ($object->ldap_sid) {
323  print ' ('.$langs->trans("DomainUser").')';
324 }
325 print '</span>';
326 print '</td></tr>'."\n";
327 
328 print '</table>';
329 
330 print '</div>';
331 print '<br>';
332 
333 if ($user->admin) {
334  print info_admin($langs->trans("WarningOnlyPermissionOfActivatedModules"));
335 }
336 // If edited user is an extern user, we show warning for external users
337 if (!empty($object->socid)) {
338  print info_admin(showModulesExludedForExternal($modules))."\n";
339 }
340 
341 $parameters = array('permsgroupbyentity'=>$permsgroupbyentity);
342 $reshook = $hookmanager->executeHooks('insertExtraHeader', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
343 if ($reshook < 0) {
344  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
345 }
346 
347 $listofexpandedmodules = array();
348 
349 
350 print "\n";
351 print '<div class="div-table-responsive-no-min">';
352 print '<table class="noborder centpercent">';
353 
354 print '<tr class="liste_titre">';
355 print '<td>'.$langs->trans("Module").'</td>';
356 if ($caneditperms) {
357  print '<td class="center nowrap">';
358  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>";
359  print ' / ';
360  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>";
361  print '</td>';
362 } else {
363  print '<td></td>';
364 }
365 print '<td></td>';
366 //print '<td></td>';
367 print '<td class="right nowrap" colspan="2">';
368 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>';
369 print ' | ';
370 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>';
371 print '</td>';
372 print '</tr>'."\n";
373 
374 
375 // Fix bad value for module_position in table
376 // ------------------------------------------
377 $sql = "SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
378 $sql .= " FROM ".MAIN_DB_PREFIX."rights_def as r";
379 $sql .= " WHERE r.libelle NOT LIKE 'tou%'"; // On ignore droits "tous"
380 $sql .= " AND r.entity = ".((int) $entity);
381 $sql .= " ORDER BY r.family_position, r.module_position, r.module, r.id";
382 
383 $result = $db->query($sql);
384 if ($result) {
385  $num = $db->num_rows($result);
386  $i = 0;
387  $oldmod = '';
388 
389  while ($i < $num) {
390  $obj = $db->fetch_object($result);
391 
392  // If line is for a module that does not exist anymore (absent of includes/module), we ignore it
393  if (!isset($obj->module) || empty($modules[$obj->module])) {
394  $i++;
395  continue;
396  }
397 
398  // Special cases
399  if (isModEnabled("reception")) {
400  // The 2 permissions in fournisseur modules are replaced by permissions into reception module
401  if ($obj->module == 'fournisseur' && $obj->perms == 'commande' && $obj->subperms == 'receptionner') {
402  $i++;
403  continue;
404  }
405  if ($obj->module == 'fournisseur' && $obj->perms == 'commande_advance' && $obj->subperms == 'check') {
406  $i++;
407  continue;
408  }
409  }
410 
411  $objMod = $modules[$obj->module];
412 
413  // Save field module_position in database if value is wrong
414  if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $obj->module_position < 100000)) {
415  if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
416  // TODO Define familyposition
417  //$familyposition = $modules[$obj->module]->family_position;
418  $familyposition = 0;
419 
420  $newmoduleposition = $modules[$obj->module]->module_position;
421 
422  // Correct $newmoduleposition position for external modules
423  $objMod = $modules[$obj->module];
424  if (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $newmoduleposition < 100000) {
425  $newmoduleposition += 100000;
426  }
427 
428  $sqlupdate = 'UPDATE '.MAIN_DB_PREFIX."rights_def SET module_position = ".((int) $newmoduleposition).",";
429  $sqlupdate .= " family_position = ".((int) $familyposition);
430  $sqlupdate .= " WHERE module_position = ".((int) $obj->module_position)." AND module = '".$db->escape($obj->module)."'";
431 
432  $db->query($sqlupdate);
433  }
434  }
435  }
436 }
437 
438 
439 
440 //print "xx".$conf->global->MAIN_USE_ADVANCED_PERMS;
441 $sql = "SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
442 $sql .= " FROM ".MAIN_DB_PREFIX."rights_def as r";
443 $sql .= " WHERE r.libelle NOT LIKE 'tou%'"; // On ignore droits "tous"
444 $sql .= " AND r.entity = ".((int) $entity);
445 if (empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
446  $sql .= " AND r.perms NOT LIKE '%_advance'"; // Hide advanced perms if option is not enabled
447 }
448 $sql .= " ORDER BY r.family_position, r.module_position, r.module, r.id";
449 
450 $result = $db->query($sql);
451 if ($result) {
452  $num = $db->num_rows($result);
453  $i = 0; $j = 0;
454  $oldmod = '';
455 
456  $cookietohidegroup = (empty($_COOKIE["DOLUSER_PERMS_HIDE_GRP"]) ? '' : preg_replace('/^,/', '', $_COOKIE["DOLUSER_PERMS_HIDE_GRP"]));
457  $cookietohidegrouparray = explode(',', $cookietohidegroup);
458  //var_dump($cookietohidegrouparray);
459 
460  while ($i < $num) {
461  $obj = $db->fetch_object($result);
462 
463  // If line is for a module that does not exist anymore (absent of includes/module), we ignore it
464  if (empty($modules[$obj->module])) {
465  $i++;
466  continue;
467  }
468 
469  // Special cases
470  if (isModEnabled("reception")) {
471  // The 2 permission in fournisseur modules has been replaced by permissions into reception module
472  if ($obj->module == 'fournisseur' && $obj->perms == 'commande' && $obj->subperms == 'receptionner') {
473  $i++;
474  continue;
475  }
476  if ($obj->module == 'fournisseur' && $obj->perms == 'commande_advance' && $obj->subperms == 'check') {
477  $i++;
478  continue;
479  }
480  }
481 
482  $objMod = $modules[$obj->module];
483 
484  // Save field module_position in database if value is wrong
485  /*
486  if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $obj->module_position < 100000)) {
487  if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
488  // TODO Define familyposition
489  //$familyposition = $modules[$obj->module]->family_position;
490  $familyposition = 0;
491 
492  $newmoduleposition = $modules[$obj->module]->module_position;
493 
494  // Correct $newmoduleposition position for external modules
495  $objMod = $modules[$obj->module];
496  if (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $newmoduleposition < 100000) {
497  $newmoduleposition += 100000;
498  }
499 
500  $sqlupdate = 'UPDATE '.MAIN_DB_PREFIX."rights_def SET module_position = ".((int) $newmoduleposition).",";
501  $sqlupdate .= " family_position = ".((int) $familyposition);
502  $sqlupdate .= " WHERE module_position = ".((int) $obj->module_position)." AND module = '".$db->escape($obj->module)."'";
503 
504  $db->query($sqlupdate);
505  }
506  }
507  */
508 
509  if (GETPOSTISSET('forbreakperms_'.$obj->module)) {
510  $ishidden = GETPOST('forbreakperms_'.$obj->module, 'int');
511  } elseif (in_array($j, $cookietohidegrouparray)) { // If j is among list of hidden group
512  $ishidden = 1;
513  } else {
514  $ishidden = 0;
515  }
516  $isexpanded = ! $ishidden;
517  //var_dump("isexpanded=".$isexpanded);
518 
519  $permsgroupbyentitypluszero = array();
520  if (!empty($permsgroupbyentity[0])) {
521  $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[0]);
522  }
523  if (!empty($permsgroupbyentity[$entity])) {
524  $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[$entity]);
525  }
526  //var_dump($permsgroupbyentitypluszero);
527 
528  // Break found, it's a new module to catch
529  if (isset($obj->module) && ($oldmod <> $obj->module)) {
530  $oldmod = $obj->module;
531 
532  $j++;
533  if (GETPOSTISSET('forbreakperms_'.$obj->module)) {
534  $ishidden = GETPOST('forbreakperms_'.$obj->module, 'int');
535  } elseif (in_array($j, $cookietohidegrouparray)) { // If j is among list of hidden group
536  $ishidden = 1;
537  } else {
538  $ishidden = 0;
539  }
540  $isexpanded = ! $ishidden;
541  //var_dump('$obj->module='.$obj->module.' isexpanded='.$isexpanded);
542 
543  // Break detected, we get objMod
544  $objMod = $modules[$obj->module];
545  $picto = ($objMod->picto ? $objMod->picto : 'generic');
546 
547  // Show break line
548  print '<tr class="oddeven trforbreakperms" data-hide-perms="'.$obj->module.'" data-j="'.$j.'">';
549  // Picto and label of module
550  print '<td class="maxwidthonsmartphone tdoverflowmax150 tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'" title="'.dol_escape_htmltag($objMod->getName()).'">';
551  print '<input type="hidden" name="forbreakperms_'.$obj->module.'" id="idforbreakperms_'.$obj->module.'" css="cssforfieldishiden" data-j="'.$j.'" value="'.($isexpanded ? '0' : "1").'">';
552  print img_object('', $picto, 'class="pictoobjectwidth paddingright"').' '.$objMod->getName();
553  print '<a name="'.$objMod->getName().'"></a>';
554  print '</td>';
555  // Permission and tick (2 columns)
556  if (($caneditperms && empty($objMod->rights_admin_allowed)) || empty($object->admin)) {
557  if ($caneditperms) {
558  print '<td class="center wraponsmartphone">';
559  print '<span class="permtohide_'.$obj->module.'" '.(!$isexpanded ? ' style="display:none"' : '').'>';
560  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>";
561  print ' / ';
562  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>";
563  print '</span>';
564  print '</td>';
565  print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">';
566  print '</td>';
567  } else {
568  print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">&nbsp;</td>';
569  print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">&nbsp;</td>';
570  }
571  } else {
572  if ($caneditperms) {
573  print '<td class="center wraponsmartphone">';
574  /*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>";
575  print ' / ';
576  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>";
577  */
578  print '</td>';
579  print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">';
580  print '</td>';
581  } else {
582  print '<td class="right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'"></td>';
583  print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">&nbsp;</td>';
584  }
585  }
586  // Description of permission (2 columns)
587  print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">&nbsp;</td>';
588  print '<td class="maxwidthonsmartphone right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">';
589  print '<div class="switchfolderperms folderperms_'.$obj->module.'"'.($isexpanded ? ' style="display:none;"' : '').'>';
590  print img_picto('', 'folder', 'class="marginright"');
591  print '</div>';
592  print '<div class="switchfolderperms folderopenperms_'.$obj->module.'"'.(!$isexpanded ? ' style="display:none;"' : '').'>';
593  print img_picto('', 'folder-open', 'class="marginright"');
594  print '</div>';
595  print '</td>'; //Add picto + / - when open en closed
596  print '</tr>'."\n";
597  }
598 
599  print '<!-- '.$obj->module.'->'.$obj->perms.($obj->subperms ? '->'.$obj->subperms : '').' -->'."\n";
600  print '<tr class="oddeven trtohide_'.$obj->module.'"'.(!$isexpanded ? ' style="display:none"' : '').'>';
601 
602  // Picto and label of module
603  print '<td class="maxwidthonsmartphone tdoverflowonsmartphone">';
604  print '</td>';
605 
606  // Permission and tick (2 columns)
607  if (!empty($object->admin) && !empty($objMod->rights_admin_allowed)) { // Permission granted because admin
608  if ($caneditperms) {
609  print '<td class="center">'.img_picto($langs->trans("Administrator"), 'star').'</td>';
610  } else {
611  print '<td>&nbsp;</td>';
612  }
613  print '<td class="center nowrap">';
614  if (!$caneditperms) {
615  print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
616  //print img_picto($langs->trans("Active"), 'tick');
617  }
618  print '</td>';
619  } elseif (in_array($obj->id, $permsuser)) { // Permission granted by user
620  if ($caneditperms) {
621  print '<td class="center">';
622  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.'">';
623  //print img_edit_remove($langs->trans("Remove"));
624  print img_picto($langs->trans("Remove"), 'switch_on');
625  print '</a></td>';
626  } else {
627  print '<td>&nbsp;</td>';
628  }
629  print '<td class="center nowrap">';
630  if (!$caneditperms) {
631  print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
632  //print img_picto($langs->trans("Active"), 'tick');
633  }
634  print '</td>';
635  } elseif (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero)) {
636  if (in_array($obj->id, $permsgroupbyentitypluszero)) { // Permission granted by group
637  if ($caneditperms) {
638  print '<td class="center">';
639  print $form->textwithtooltip($langs->trans("Inherited"), $langs->trans("PermissionInheritedFromAGroup"));
640  print '</td>';
641  } else {
642  print '<td>&nbsp;</td>';
643  }
644  print '<td class="center nowrap">';
645  print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
646  //print img_picto($langs->trans("Active"), 'tick');
647  print '</td>';
648  } else {
649  // Do not own permission
650  if ($caneditperms) {
651  print '<td class="center">';
652  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.'">';
653  //print img_edit_add($langs->trans("Add"));
654  print img_picto($langs->trans("Add"), 'switch_off');
655  print '</a></td>';
656  } else {
657  print '<td>';
658  print '&nbsp;';
659  print '</td>';
660  }
661  print '<td>&nbsp;</td>';
662  }
663  } else {
664  // Do not own permission
665  if ($caneditperms) {
666  print '<td class="center">';
667  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.'">';
668  //print img_edit_add($langs->trans("Add"));
669  print img_picto($langs->trans("Add"), 'switch_off');
670  print '</a></td>';
671  } else {
672  print '<td>&nbsp;</td>';
673  }
674  print '<td class="center">';
675  if (!$caneditperms) {
676  print img_picto($langs->trans("Disabled"), 'switch_off', '', false, 0, 0, '', 'opacitymedium');
677  }
678  //print '&nbsp;';
679  print '</td>';
680  }
681 
682  // Description of permission (2 columns)
683  $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)));
684  if (!$user->admin) {
685  print '<td colspan="2">';
686  } else {
687  print '<td>';
688  }
689  print $permlabel;
690  if (!empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
691  if (preg_match('/_advance$/', $obj->perms)) {
692  print ' <span class="opacitymedium">('.$langs->trans("AdvancedModeOnly").')</span>';
693  }
694  }
695  print '</td>';
696 
697  // Permission id
698  if ($user->admin) {
699  print '<td class="right">';
700  $htmltext = $langs->trans("ID").': '.$obj->id;
701  $htmltext .= '<br>'.$langs->trans("Permission").': user->rights->'.$obj->module.'->'.$obj->perms.($obj->subperms ? '->'.$obj->subperms : '');
702  print $form->textwithpicto('', $htmltext);
703  //print '<span class="opacitymedium">'.$obj->id.'</span>';
704  print '</td>';
705  }
706 
707  print '</tr>'."\n";
708 
709  $i++;
710  }
711 } else {
712  dol_print_error($db);
713 }
714 print '</table>';
715 print '</div>';
716 
717 print '<script>';
718 print '$(".tdforbreakperms:not(.alink)").on("click", function(){
719  console.log("Click on tdforbreakperms");
720  moduletohide = $(this).data("hide-perms");
721  j = $(this).data("j");
722  if ($("#idforbreakperms_"+moduletohide).val() == 1) {
723  console.log("idforbreakperms_"+moduletohide+" has value hidden=1");
724  $(".trtohide_"+moduletohide).show();
725  $(".permtoshow_"+moduletohide).hide();
726  $(".permtohide_"+moduletohide).show();
727  $(".folderperms_"+moduletohide).hide();
728  $(".folderopenperms_"+moduletohide).show();
729  $("#idforbreakperms_"+moduletohide).val("0");
730  } else {
731  console.log("idforbreakperms_"+moduletohide+" has value hidden=0");
732  $(".trtohide_"+moduletohide).hide();
733  $(".folderopenperms_"+moduletohide).hide();
734  $(".folderperms_"+moduletohide).show();
735  $(".permtoshow_"+moduletohide).show();
736  $(".permtohide_"+moduletohide).hide();
737  $("#idforbreakperms_"+moduletohide).val("1");
738  }
739 
740  // Now rebuild the value for cookie
741  var hideuserperm="";
742  $(".trforbreakperms").each(function(index) {
743  //console.log( index + ": " + $( this ).data("j") + " " + $( this ).data("hide-perms") + " " + $("input[data-j="+(index+1)+"]").val());
744  if ($("input[data-j="+(index+1)+"]").val() == 1) {
745  hideuserperm=hideuserperm+","+(index+1);
746  }
747  });
748  // set cookie by js
749  date = new Date(); date.setTime(date.getTime()+(30*86400000));
750  if (hideuserperm) {
751  console.log("set cookie DOLUSER_PERMS_HIDE_GRP="+hideuserperm);
752  document.cookie = "DOLUSER_PERMS_HIDE_GRP=" + hideuserperm + "; expires=" + date.toGMTString() + "; path=/ ";
753  } else {
754  console.log("delete cookie DOLUSER_PERMS_HIDE_GRP");
755  document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
756  }
757 });';
758 print "\n";
759 
760 // Button expand / collapse all
761 print '$(".showallperms").on("click", function(){
762  console.log("Click on showallperms");
763 
764  console.log("delete cookie DOLUSER_PERMS_HIDE_GRP from showallperms click");
765  document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
766  $(".tdforbreakperms").each( function(){
767  moduletohide = $(this).data("hide-perms");
768  //console.log(moduletohide);
769  if ($("#idforbreakperms_"+moduletohide).val() != 0) {
770  $(this).trigger("click"); // emulate the click, so the cooki will be resaved
771  }
772  })
773 });
774 
775 $(".hideallperms").on("click", function(){
776  console.log("Click on hideallperms");
777 
778  $(".tdforbreakperms").each( function(){
779  moduletohide = $(this).data("hide-perms");
780  //console.log(moduletohide);
781  if ($("#idforbreakperms_"+moduletohide).val() != 1) {
782  $(this).trigger("click"); // emulate the click, so the cooki will be resaved
783  }
784  })
785 });';
786 print "\n";
787 print '</script>';
788 
789 print '<style>';
790 print '.switchfolderperms{
791  cursor: pointer;
792 }';
793 print '</style>';
794 
795 $parameters = array();
796 $reshook = $hookmanager->executeHooks('insertExtraFooter', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
797 if ($reshook < 0) {
798  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
799 }
800 
801 
802 print dol_get_fiche_end();
803 
804 // End of page
805 llxFooter();
806 $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:1868
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(isModEnabled('facture') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $sql
Social contributions to pay.
Definition: index.php:746
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.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
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...
dolButtonToOpenUrlInDialogPopup($name, $label, $buttonstring, $url, $disabled='', $morecss='classlink button bordertransp', $jsonopen='', $backtopagejsfields='', $accesskey='')
Return HTML code to output a button to open a dialog popup box.
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.
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
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.