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