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