30if (!defined(
'CSRFCHECK_WITH_TOKEN')) {
31 define(
'CSRFCHECK_WITH_TOKEN',
'1');
35require
'../main.inc.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/lib/usergroups.lib.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
38require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
41$langs->loadLangs(array(
'users',
'admin'));
44$action =
GETPOST(
'action',
'aZ09');
45$confirm =
GETPOST(
'confirm',
'alpha');
46$module =
GETPOST(
'module',
'alpha');
48$updatedmodulename =
GETPOST(
'updatedmodulename',
'alpha');
49$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'userperms';
51if (!isset($id) || empty($id)) {
56$canreaduser = ($user->admin || $user->hasRight(
"user",
"user",
"read"));
58$caneditperms = ($user->admin || $user->hasRight(
"user",
"user",
"write"));
61 $canreaduser = ($user->admin || ($user->hasRight(
"user",
"user",
"read") && $user->hasRight(
"user",
"user_advance",
"readperms")));
62 $caneditselfperms = ($user->id == $id && $user->hasRight(
"user",
"self_advance",
"writeperms"));
63 $caneditperms = (($caneditperms || $caneditselfperms) ? 1 : 0);
68if (isset($user->socid) && $user->socid > 0) {
69 $socid = $user->socid;
71$feature2 = (($socid && $user->hasRight(
"user",
"self",
"write")) ?
'' :
'user');
73if ($user->id == $id && (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
"user",
"self_advance",
"readperms") && empty($user->admin))) {
77$result =
restrictedArea($user,
'user', $id,
'user&user', $feature2);
78if ($user->id != $id && !$canreaduser) {
86$entity = $conf->entity;
89$hookmanager->initHooks(array(
'usercard',
'userperms',
'globalcard'));
96$parameters = array(
'socid' => $socid);
97$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
102if (empty($reshook)) {
103 if ($action ==
'addrights' && $caneditperms && $confirm ==
'yes') {
104 $edituser =
new User($db);
106 $result = $edituser->addrights($rights, $module,
'', $entity);
112 if (
$object->id == $user->id) {
113 $user->clearrights();
115 $menumanager->loadMenu();
122 if ($action ==
'delrights' && $caneditperms && $confirm ==
'yes') {
123 $edituser =
new User($db);
125 $result = $edituser->delrights($rights, $module,
'', $entity);
131 if (
$object->id == $user->id) {
132 $user->clearrights();
134 $menumanager->loadMenu();
147$form =
new Form($db);
150$title = $person_name.
" - ".$langs->trans(
'Permissions');
152llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-user page-card_perms');
156$title = $langs->trans(
"User");
166foreach ($modulesdir as $dir) {
168 if (is_resource($handle)) {
169 while (($file = readdir($handle)) !==
false) {
170 if (is_readable($dir.$file) && substr($file, 0, 3) ==
'mod' && substr($file,
dol_strlen($file) - 10) ==
'.class.php') {
171 $modName = substr($file, 0,
dol_strlen($file) - 10);
174 include_once $dir.$file;
175 $objMod =
new $modName($db);
178 if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
179 foreach ($objMod->langfiles as $domain) {
180 $langs->load($domain);
184 if ($objMod->rights_class) {
185 $ret = $objMod->insert_permissions(0, $entity);
186 $modules[$objMod->rights_class] = $objMod;
197'@phan-var-force DolibarrModules[] $modules';
202$sql =
"SELECT DISTINCT ur.fk_id";
203$sql .=
" FROM ".MAIN_DB_PREFIX.
"user_rights as ur";
204$sql .=
" WHERE ur.entity = ".((int) $entity);
205$sql .=
" AND ur.fk_user = ".((int)
$object->id);
208$result = $db->query($sql);
210 $num = $db->num_rows($result);
213 $obj = $db->fetch_object($result);
214 array_push($permsuser, $obj->fk_id);
223$permsgroupbyentity = array();
225$sql =
"SELECT DISTINCT gr.fk_id, gu.entity";
226$sql .=
" FROM ".MAIN_DB_PREFIX.
"usergroup_rights as gr,";
227$sql .=
" ".MAIN_DB_PREFIX.
"usergroup_user as gu";
228$sql .=
" WHERE gr.entity = ".((int) $entity);
232$sql .=
" AND gu.entity IN (0,".$conf->entity.
")";
233$sql .=
" AND gr.fk_usergroup = gu.fk_usergroup";
234$sql .=
" AND gu.fk_user = ".((int)
$object->id);
237$result = $db->query($sql);
239 $num = $db->num_rows($result);
242 $obj = $db->fetch_object($result);
243 if (!isset($permsgroupbyentity[$obj->entity])) {
244 $permsgroupbyentity[$obj->entity] = array();
246 array_push($permsgroupbyentity[$obj->entity], $obj->fk_id);
262if ($user->hasRight(
"user",
"user",
"read") || $user->admin) {
263 $linkback =
'<a href="'.DOL_URL_ROOT.
'/user/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
266$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">';
267$morehtmlref .=
img_picto($langs->trans(
"Download").
' '.$langs->trans(
"VCard"),
'vcard.png',
'class="valignmiddle marginleftonly paddingrightonly"');
268$morehtmlref .=
'</a>';
270$urltovirtualcard =
'/user/virtualcard.php?id='.((int)
$object->id);
271$morehtmlref .=
dolButtonToOpenUrlInDialogPopup(
'publicvirtualcard', $langs->transnoentitiesnoconv(
"PublicVirtualCardUrl").
' - '.
$object->getFullName($langs),
img_picto($langs->trans(
"PublicVirtualCardUrl"),
'card',
'class="valignmiddle marginleftonly paddingrightonly"'), $urltovirtualcard,
'',
'nohover');
273dol_banner_tab(
$object,
'id', $linkback, $user->hasRight(
"user",
"user",
"read") || $user->admin,
'rowid',
'ref', $morehtmlref);
276print
'<div class="fichecenter">';
278print
'<div class="underbanner clearboth"></div>';
279print
'<table class="border centpercent tableforfield">';
282print
'<tr><td id="anchorforperms" class="titlefield">'.$langs->trans(
"Login").
'</td>';
284 print
'<td class="error">';
285 print $langs->trans(
"LoginAccountDisableInDolibarr");
290 if (property_exists(
$object,
'admin')) {
291 if (isModEnabled(
'multicompany') && !empty(
$object->admin) && empty(
$object->entity)) {
292 $addadmin .=
img_picto($langs->trans(
"SuperAdministratorDesc"),
"redstar",
'class="paddingleft"');
293 } elseif (!empty(
$object->admin)) {
294 $addadmin .=
img_picto($langs->trans(
"AdministratorDesc"),
"star",
'class="paddingleft"');
304$text = $langs->trans(
"Type");
305print $form->textwithpicto($text, $langs->trans(
"InternalExternalDesc"));
307$type = $langs->trans(
"Internal");
309 $type = $langs->trans(
"External");
311print
'<span class="badgeneutral">';
314 print
' ('.$langs->trans(
"DomainUser").
')';
317print
'</td></tr>'.
"\n";
325 print
info_admin($langs->trans(
"WarningOnlyPermissionOfActivatedModules"));
332$parameters = array(
'permsgroupbyentity' => $permsgroupbyentity);
333$reshook = $hookmanager->executeHooks(
'insertExtraHeader', $parameters,
$object, $action);
338$listofexpandedmodules = array();
342print
'<div class="div-table-responsive-no-min">';
343print
'<table class="noborder centpercent">';
345print
'<tr class="liste_titre">';
346print
'<td>'.$langs->trans(
"Module").
'</td>';
348 print
'<td class="center nowrap">';
349 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>";
351 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>";
358print
'<td class="right nowrap" colspan="2">';
359print
'<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>';
361print
'<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>';
368$sql =
"SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
369$sql .=
" FROM ".MAIN_DB_PREFIX.
"rights_def as r";
370$sql .=
" WHERE r.libelle NOT LIKE 'tou%'";
371$sql .=
" AND r.entity = ".((int) $entity);
372$sql .=
" ORDER BY r.family_position, r.module_position, r.module, r.id";
374$result = $db->query($sql);
376 $num = $db->num_rows($result);
381 $obj = $db->fetch_object($result);
384 if (!isset($obj->module) || empty($modules[$obj->module])) {
390 if (isModEnabled(
"reception")) {
392 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande' && $obj->subperms ==
'receptionner') {
396 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande_advance' && $obj->subperms ==
'check') {
402 $objMod = $modules[$obj->module];
405 if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() ==
'external' && $obj->module_position < 100000)) {
406 if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
411 $newmoduleposition = $modules[$obj->module]->module_position;
414 $objMod = $modules[$obj->module];
415 if (is_object($objMod) && $objMod->isCoreOrExternalModule() ==
'external' && $newmoduleposition < 100000) {
416 $newmoduleposition += 100000;
419 $sqlupdate =
'UPDATE '.MAIN_DB_PREFIX.
"rights_def SET module_position = ".((int) $newmoduleposition).
",";
420 $sqlupdate .=
" family_position = ".((int) $familyposition);
421 $sqlupdate .=
" WHERE module_position = ".((int) $obj->module_position).
" AND module = '".$db->escape($obj->module).
"'";
423 $db->query($sqlupdate);
432$sql =
"SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
433$sql .=
" FROM ".MAIN_DB_PREFIX.
"rights_def as r";
434$sql .=
" WHERE r.libelle NOT LIKE 'tou%'";
435$sql .=
" AND r.entity = ".((int) $entity);
437 $sql .=
" AND r.perms NOT LIKE '%_advance'";
439$sql .=
" ORDER BY r.family_position, r.module_position, r.module, r.id";
441$result = $db->query($sql);
443 $num = $db->num_rows($result);
448 $cookietohidegroup = (empty($_COOKIE[
"DOLUSER_PERMS_HIDE_GRP"]) ?
'' : preg_replace(
'/^,/',
'', $_COOKIE[
"DOLUSER_PERMS_HIDE_GRP"]));
449 $cookietohidegrouparray = explode(
',', $cookietohidegroup);
453 $obj = $db->fetch_object($result);
456 if (empty($modules[$obj->module])) {
462 if (isModEnabled(
"reception")) {
464 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande' && $obj->subperms ==
'receptionner') {
468 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande_advance' && $obj->subperms ==
'check') {
474 $objMod = $modules[$obj->module];
501 if (GETPOSTISSET(
'forbreakperms_'.$obj->module)) {
502 $ishidden =
GETPOSTINT(
'forbreakperms_'.$obj->module);
503 } elseif (in_array($j, $cookietohidegrouparray)) {
508 $isexpanded = ! $ishidden;
511 $permsgroupbyentitypluszero = array();
512 if (!empty($permsgroupbyentity[0])) {
513 $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[0]);
515 if (!empty($permsgroupbyentity[$entity])) {
516 $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[$entity]);
521 if (isset($obj->module) && ($oldmod != $obj->module)) {
522 $oldmod = $obj->module;
525 if (GETPOSTISSET(
'forbreakperms_'.$obj->module)) {
526 $ishidden =
GETPOSTINT(
'forbreakperms_'.$obj->module);
527 } elseif (in_array($j, $cookietohidegrouparray)) {
532 $isexpanded = ! $ishidden;
536 $objMod = $modules[$obj->module];
537 $picto = ($objMod->picto ? $objMod->picto :
'generic');
540 print
'<tr class="oddeven trforbreakperms" data-hide-perms="'.$obj->module.
'" data-j="'.$j.
'">';
542 print
'<td class="maxwidthonsmartphone tdoverflowmax150 tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'" title="'.
dol_escape_htmltag($objMod->getName()).
'">';
543 print
'<input type="hidden" name="forbreakperms_'.$obj->module.
'" id="idforbreakperms_'.$obj->module.
'" css="cssforfieldishiden" data-j="'.$j.
'" value="'.($isexpanded ?
'0' :
"1").
'">';
544 print
img_object(
'', $picto,
'class="pictoobjectwidth paddingright"').
' '.$objMod->getName();
545 print
'<a name="'.$objMod->getName().
'"></a>';
548 if (($caneditperms && empty($objMod->rights_admin_allowed)) || empty(
$object->admin)) {
550 print
'<td class="center wraponsmartphone">';
551 print
'<span class="permtohide_'.$obj->module.
'" '.(!$isexpanded ?
' style="display:none"' :
'').
'>';
552 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>";
554 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>";
557 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
560 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
561 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
565 print
'<td class="center wraponsmartphone">';
571 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
574 print
'<td class="right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"></td>';
575 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
579 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
580 print
'<td class="maxwidthonsmartphone right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
581 print
'<div class="switchfolderperms folderperms_'.$obj->module.
'"'.($isexpanded ?
' style="display:none;"' :
'').
'>';
582 print
img_picto(
'',
'folder',
'class="marginright"');
584 print
'<div class="switchfolderperms folderopenperms_'.$obj->module.
'"'.(!$isexpanded ?
' style="display:none;"' :
'').
'>';
585 print
img_picto(
'',
'folder-open',
'class="marginright"');
591 print
'<!-- '.$obj->module.
'->'.$obj->perms.($obj->subperms ?
'->'.$obj->subperms :
'').
' -->'.
"\n";
592 print
'<tr class="oddeven trtohide_'.$obj->module.
'"'.(!$isexpanded ?
' style="display:none"' :
'').
'>';
595 print
'<td class="maxwidthonsmartphone tdoverflowmax200">';
599 if (!empty(
$object->admin) && !empty($objMod->rights_admin_allowed)) {
600 print
'<!-- perm is a perm allowed to any admin -->';
602 print
'<td class="center">'.img_picto($langs->trans(
"AdministratorDesc"),
'star').
'</td>';
604 print
'<td class="center nowrap">';
605 print
img_picto($langs->trans(
"Active"),
'switch_on',
'',
false, 0, 0,
'',
'opacitymedium');
610 } elseif (in_array($obj->id, $permsuser)) {
611 print
'<!-- user has perm -->';
613 print
'<td class="center">';
614 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.
'">';
616 print
img_picto($langs->trans(
"Remove"),
'switch_on');
619 print
'<td class="center nowrap">';
620 print
img_picto($langs->trans(
"Active"),
'switch_on',
'',
false, 0, 0,
'',
'opacitymedium');
625 } elseif (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero)) {
626 print
'<!-- permsgroupbyentitypluszero -->';
627 if (in_array($obj->id, $permsgroupbyentitypluszero)) {
628 print
'<td class="center nowrap">';
629 print
img_picto($langs->trans(
"Active"),
'switch_on',
'',
false, 0, 0,
'',
'opacitymedium');
633 print $form->textwithtooltip($langs->trans(
"Inherited"), $langs->trans(
"PermissionInheritedFromAGroup"));
638 print
'<td class="center nowrap">';
639 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.
'">';
641 print
img_picto($langs->trans(
"Add"),
'switch_off');
644 print
'<td class="center nowrap">';
645 print
img_picto($langs->trans(
"Disabled"),
'switch_off',
'',
false, 0, 0,
'',
'opacitymedium');
653 print
'<!-- do not own permission -->';
655 print
'<td class="center">';
656 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.
'">';
658 print
img_picto($langs->trans(
"Add"),
'switch_off');
662 print
img_picto($langs->trans(
"Disabled"),
'switch_off',
'',
false, 0, 0,
'',
'opacitymedium');
665 print
'<td class="center">';
670 $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)));
672 print
'<td colspan="2">';
678 if (in_array($idtouse, array(121, 122, 125, 126))) {
681 if ($langs->trans(
"Permission".$idtouse.
'b') !=
"Permission".$idtouse.
'b') {
682 print
'<br><span class="opacitymedium">'.$langs->trans(
"Permission".$idtouse.
'b').
'</span>';
684 if ($langs->trans(
"Permission".$obj->id.
'c') !=
"Permission".$obj->id.
'c') {
685 print
'<br><span class="opacitymedium">'.$langs->trans(
"Permission".$obj->id.
'c').
'</span>';
688 if (preg_match(
'/_advance$/', $obj->perms)) {
689 print
' <span class="opacitymedium">('.$langs->trans(
"AdvancedModeOnly").
')</span>';
693 if ($obj->module ==
'user' && $obj->perms ==
'user' && $obj->subperms ==
'password') {
694 if ((!empty(
$object->admin) && !empty($objMod->rights_admin_allowed)) ||
695 in_array($obj->id, $permsuser) ||
696 (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero) && in_array($obj->id, $permsgroupbyentitypluszero))) {
697 print
' '.img_warning($langs->trans(
"AllowPasswordResetBySendingANewPassByEmail"));
701 if ($obj->module ==
'user' && $obj->perms ==
'user' && ($obj->subperms ==
'creer' || $obj->subperms ==
'create')) {
702 if ((!empty(
$object->admin) && !empty($objMod->rights_admin_allowed)) ||
703 in_array($obj->id, $permsuser) ||
704 (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero) && in_array($obj->id, $permsgroupbyentitypluszero))) {
705 print
' '.img_warning($langs->trans(
"AllowAnyPrivileges"));
709 if ($obj->module ==
'banque' && $obj->perms ==
'lire') {
710 if (isModEnabled(
"accounting") &&
$object->hasRight(
'accounting',
'chartofaccount')) {
711 print
' '.img_warning($langs->trans(
"WarningReadBankAlsoAllowedIfUserHasPermission"));
719 print
'<td class="right">';
720 $htmltext = $langs->trans(
"ID").
': '.$obj->id;
721 $htmltext .=
'<br>'.$langs->trans(
"Permission").
': user->hasRight(\''.
dol_escape_htmltag($obj->module).
'\', \
''.dol_escape_htmltag($obj->perms).
'\''.($obj->subperms ?
', \''.dol_escape_htmltag($obj->subperms).
'\'' :
'').
')';
722 print $form->textwithpicto(
'', $htmltext);
738print
'$(".tdforbreakperms:not(.alink)").on("click", function(){
739 console.log("Click on tdforbreakperms");
740 moduletohide = $(this).data("hide-perms");
741 j = $(this).data("j");
742 if ($("#idforbreakperms_"+moduletohide).val() == 1) {
743 console.log("idforbreakperms_"+moduletohide+" has value hidden=1");
744 $(".trtohide_"+moduletohide).show();
745 $(".permtoshow_"+moduletohide).hide();
746 $(".permtohide_"+moduletohide).show();
747 $(".folderperms_"+moduletohide).hide();
748 $(".folderopenperms_"+moduletohide).show();
749 $("#idforbreakperms_"+moduletohide).val("0");
751 console.log("idforbreakperms_"+moduletohide+" has value hidden=0");
752 $(".trtohide_"+moduletohide).hide();
753 $(".folderopenperms_"+moduletohide).hide();
754 $(".folderperms_"+moduletohide).show();
755 $(".permtoshow_"+moduletohide).show();
756 $(".permtohide_"+moduletohide).hide();
757 $("#idforbreakperms_"+moduletohide).val("1");
760 // Now rebuild the value for cookie
762 $(".trforbreakperms").each(function(index) {
763 //console.log( index + ": " + $( this ).data("j") + " " + $( this ).data("hide-perms") + " " + $("input[data-j="+(index+1)+"]").val());
764 if ($("input[data-j="+(index+1)+"]").val() == 1) {
765 hideuserperm=hideuserperm+","+(index+1);
769 date = new Date(); date.setTime(date.getTime()+(30*86400000));
771 console.log("set cookie DOLUSER_PERMS_HIDE_GRP="+hideuserperm);
772 document.cookie = "DOLUSER_PERMS_HIDE_GRP=" + hideuserperm + "; expires=" + date.toGMTString() + "; path=/ ";
774 console.log("delete cookie DOLUSER_PERMS_HIDE_GRP");
775 document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
781print
'$(".showallperms").on("click", function(){
782 console.log("Click on showallperms");
784 console.log("delete cookie DOLUSER_PERMS_HIDE_GRP from showallperms click");
785 document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
786 $(".tdforbreakperms").each( function(){
787 moduletohide = $(this).data("hide-perms");
788 //console.log(moduletohide);
789 if ($("#idforbreakperms_"+moduletohide).val() != 0) {
790 $(this).trigger("click"); // emulate the click, so the cooki will be resaved
795$(".hideallperms").on("click", function(){
796 console.log("Click on hideallperms");
798 $(".tdforbreakperms").each( function(){
799 moduletohide = $(this).data("hide-perms");
800 //console.log(moduletohide);
801 if ($("#idforbreakperms_"+moduletohide).val() != 1) {
802 $(this).trigger("click"); // emulate the click, so the cooki will be resaved
810print
'.switchfolderperms{
815$parameters = array();
816$reshook = $hookmanager->executeHooks(
'insertExtraFooter', $parameters,
$object, $action);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
showModulesExludedForExternal($modules)
Show array with constants to edit.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage Dolibarr users.
dolGetModulesDirs($subdir='')
Return list of directories that contain modules.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
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)
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_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.
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.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
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.
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.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return 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...
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.