31if (!defined(
'CSRFCHECK_WITH_TOKEN')) {
32 define(
'CSRFCHECK_WITH_TOKEN',
'1');
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';
50$langs->loadLangs(array(
'users',
'admin'));
53$action =
GETPOST(
'action',
'aZ09');
54$confirm =
GETPOST(
'confirm',
'alpha');
55$module =
GETPOST(
'module',
'alpha');
57$updatedmodulename =
GETPOST(
'updatedmodulename',
'alpha');
58$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'userperms';
60if (!isset($id) || empty($id)) {
65$canreaduser = ($user->admin || $user->hasRight(
"user",
"user",
"read"));
67$caneditperms = ($user->admin || $user->hasRight(
"user",
"user",
"write"));
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);
77if (!empty($user->socid) && $user->socid > 0) {
78 $socid = $user->socid;
80$feature2 = (($socid && $user->hasRight(
"user",
"self",
"write")) ?
'' :
'user');
82if ($user->id == $id && (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
"user",
"self_advance",
"readperms") && empty($user->admin))) {
87$hookmanager->initHooks(array(
'usercard',
'userperms',
'globalcard'));
89$result =
restrictedArea($user,
'user', $id,
'user&user', $feature2);
90if ($user->id != $id && !$canreaduser) {
98$entity =
$conf->entity;
104$parameters = array(
'socid' => $socid);
105$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
110if (empty($reshook)) {
111 if ($action ==
'addrights' && $caneditperms && $confirm ==
'yes') {
112 $edituser =
new User($db);
114 $result = $edituser->addrights($rights, $module,
'', $entity);
120 if (
$object->id == $user->id) {
121 $user->clearrights();
124 $menumanager->loadMenu();
131 if ($action ==
'delrights' && $caneditperms && $confirm ==
'yes') {
132 $edituser =
new User($db);
134 $result = $edituser->delrights($rights, $module,
'', $entity);
140 if (
$object->id == $user->id) {
141 $user->clearrights();
144 $menumanager->loadMenu();
157$form =
new Form($db);
160$title = $person_name.
" - ".$langs->trans(
'Permissions');
162llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-user page-card_perms');
166$title = $langs->trans(
"User");
176foreach ($modulesdir as $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);
184 include_once $dir.$file;
185 $objMod =
new $modName($db);
186 '@phan-var-force DolibarrModules $objMod';
189 if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
190 foreach ($objMod->langfiles as $domain) {
191 $langs->load($domain);
195 if ($objMod->rights_class) {
196 $ret = $objMod->insert_permissions(0, $entity);
197 $modules[$objMod->rights_class] = $objMod;
208'@phan-var-force DolibarrModules[] $modules';
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);
219$result = $db->query($sql);
221 $num = $db->num_rows($result);
224 $obj = $db->fetch_object($result);
225 array_push($permsuser, $obj->fk_id);
234$permsgroupbyentity = array();
236$sql =
"SELECT DISTINCT gr.fk_id, gu.entity";
237$sql .=
" FROM ".MAIN_DB_PREFIX.
"usergroup_rights as gr,";
238$sql .=
" ".MAIN_DB_PREFIX.
"usergroup_user as gu";
239$sql .=
" WHERE gr.entity = ".((int) $entity);
243$sql .=
" AND gu.entity IN (0,".$conf->entity.
")";
244$sql .=
" AND gr.fk_usergroup = gu.fk_usergroup";
245$sql .=
" AND gu.fk_user = ".((int)
$object->id);
248$result = $db->query($sql);
250 $num = $db->num_rows($result);
253 $obj = $db->fetch_object($result);
254 if (!isset($permsgroupbyentity[$obj->entity])) {
255 $permsgroupbyentity[$obj->entity] = array();
257 array_push($permsgroupbyentity[$obj->entity], $obj->fk_id);
273if ($user->hasRight(
"user",
"user",
"read") || $user->admin) {
274 $linkback =
'<a href="'.DOL_URL_ROOT.
'/user/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
277$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">';
278$morehtmlref .=
img_picto($langs->trans(
"Download").
' '.$langs->trans(
"VCard"),
'vcard.png',
'class="valignmiddle marginleftonly paddingrightonly"');
279$morehtmlref .=
'</a>';
281$urltovirtualcard =
'/user/virtualcard.php?id='.((int)
$object->id);
282$morehtmlref .=
dolButtonToOpenUrlInDialogPopup(
'publicvirtualcard', $langs->transnoentitiesnoconv(
"PublicVirtualCardUrl").
' - '.
$object->getFullName($langs),
img_picto($langs->trans(
"PublicVirtualCardUrl"),
'card',
'class="valignmiddle marginleftonly paddingrightonly"'), $urltovirtualcard,
'',
'nohover');
284dol_banner_tab(
$object,
'id', $linkback, $user->hasRight(
"user",
"user",
"read") || $user->admin,
'rowid',
'ref', $morehtmlref);
287print
'<div class="fichecenter">';
289print
'<div class="underbanner clearboth"></div>';
290print
'<table class="border centpercent tableforfield">';
293print
'<tr><td id="anchorforperms" class="titlefield">'.$langs->trans(
"Login").
'</td>';
295 print
'<td class="error">';
296 print $langs->trans(
"LoginAccountDisableInDolibarr");
301 if (property_exists(
$object,
'admin')) {
302 if (isModEnabled(
'multicompany') && !empty(
$object->admin) && empty(
$object->entity)) {
303 $addadmin .=
img_picto($langs->trans(
"SuperAdministratorDesc"),
"redstar",
'class="paddingleft"');
304 } elseif (!empty(
$object->admin)) {
305 $addadmin .=
img_picto($langs->trans(
"AdministratorDesc"),
"star",
'class="paddingleft"');
315$text = $langs->trans(
"Type");
316print $form->textwithpicto($text, $langs->trans(
"InternalExternalDesc"));
318$type = $langs->trans(
"Internal");
320 $type = $langs->trans(
"External");
322print
'<span class="badgeneutral">';
325 print
' ('.$langs->trans(
"DomainUser").
')';
328print
'</td></tr>'.
"\n";
336 print
info_admin($langs->trans(
"WarningOnlyPermissionOfActivatedModules"));
344$parameters = array(
'permsgroupbyentity' => $permsgroupbyentity);
345$reshook = $hookmanager->executeHooks(
'insertExtraHeader', $parameters,
$object, $action);
354print
'<div class="div-table-responsive-no-min">';
355print
'<table class="noborder centpercent">';
357print
'<tr class="liste_titre">';
358print
'<td>'.$langs->trans(
"Module").
'</td>';
360 print
'<td class="center nowrap">';
361 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>";
363 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>";
370print
'<td class="right nowrap" colspan="2">';
371print
'<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
'<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>';
380$sql =
"SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
381$sql .=
" FROM ".MAIN_DB_PREFIX.
"rights_def as r";
382$sql .=
" WHERE r.libelle NOT LIKE 'tou%'";
383$sql .=
" AND r.entity = ".((int) $entity);
384$sql .=
" ORDER BY r.family_position, r.module_position, r.module, r.id";
386$result = $db->query($sql);
388 $num = $db->num_rows($result);
393 $obj = $db->fetch_object($result);
396 if (!isset($obj->module) || empty($modules[$obj->module])) {
402 if (isModEnabled(
"reception")) {
404 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande' && $obj->subperms ==
'receptionner') {
408 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande_advance' && $obj->subperms ==
'check') {
414 $objMod = $modules[$obj->module];
417 if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() ==
'external' && $obj->module_position < 100000)) {
418 if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
423 $newmoduleposition = $modules[$obj->module]->module_position;
426 $objMod = $modules[$obj->module];
427 if (is_object($objMod) && $objMod->isCoreOrExternalModule() ==
'external' && $newmoduleposition < 100000) {
428 $newmoduleposition += 100000;
431 $sqlupdate =
'UPDATE '.MAIN_DB_PREFIX.
"rights_def SET module_position = ".((int) $newmoduleposition).
",";
432 $sqlupdate .=
" family_position = ".((int) $familyposition);
433 $sqlupdate .=
" WHERE module_position = ".((int) $obj->module_position).
" AND module = '".$db->escape($obj->module).
"'";
435 $db->query($sqlupdate);
444$sql =
"SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
445$sql .=
" FROM ".MAIN_DB_PREFIX.
"rights_def as r";
446$sql .=
" WHERE r.libelle NOT LIKE 'tou%'";
447$sql .=
" AND r.entity = ".((int) $entity);
449 $sql .=
" AND r.perms NOT LIKE '%_advance'";
451$sql .=
" ORDER BY r.family_position, r.module_position, r.module, r.id";
453$result = $db->query($sql);
455 $num = $db->num_rows($result);
460 $cookietohidegroup = (empty($_COOKIE[
"DOLUSER_PERMS_HIDE_GRP"]) ?
'' : preg_replace(
'/^,/',
'', $_COOKIE[
"DOLUSER_PERMS_HIDE_GRP"]));
461 $cookietohidegrouparray = explode(
',', $cookietohidegroup);
465 $obj = $db->fetch_object($result);
468 if (empty($modules[$obj->module])) {
474 if (isModEnabled(
"reception")) {
476 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande' && $obj->subperms ==
'receptionner') {
480 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande_advance' && $obj->subperms ==
'check') {
486 $objMod = $modules[$obj->module];
513 if (GETPOSTISSET(
'forbreakperms_'.$obj->module)) {
514 $ishidden =
GETPOSTINT(
'forbreakperms_'.$obj->module);
515 } elseif (in_array($j, $cookietohidegrouparray)) {
520 $isexpanded = ! $ishidden;
523 $permsgroupbyentitypluszero = array();
524 if (!empty($permsgroupbyentity[0])) {
525 $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[0]);
527 if (!empty($permsgroupbyentity[$entity])) {
528 $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[$entity]);
533 if (isset($obj->module) && ($oldmod != $obj->module)) {
534 $oldmod = $obj->module;
537 if (GETPOSTISSET(
'forbreakperms_'.$obj->module)) {
538 $ishidden =
GETPOSTINT(
'forbreakperms_'.$obj->module);
539 } elseif (in_array($j, $cookietohidegrouparray)) {
544 $isexpanded = ! $ishidden;
548 $objMod = $modules[$obj->module];
549 $picto = ($objMod->picto ? $objMod->picto :
'generic');
552 print
'<tr class="oddeven trforbreakperms" data-hide-perms="'.$obj->module.
'" data-j="'.$j.
'">';
554 print
'<td class="maxwidthonsmartphone tdoverflowmax150 tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'" title="'.
dol_escape_htmltag($objMod->getName()).
'">';
555 print
'<input type="hidden" name="forbreakperms_'.$obj->module.
'" id="idforbreakperms_'.$obj->module.
'" css="cssforfieldishiden" data-j="'.$j.
'" value="'.($isexpanded ?
'0' :
"1").
'">';
556 print
img_object(
'', $picto,
'class="pictoobjectwidth paddingright"').
' '.$objMod->getName();
557 print
'<a name="'.$objMod->getName().
'"></a>';
560 if (($caneditperms && empty($objMod->rights_admin_allowed)) || empty(
$object->admin)) {
562 print
'<td class="center wraponsmartphone">';
563 print
'<span class="permtohide_'.$obj->module.
'" '.(!$isexpanded ?
' style="display:none"' :
'').
'>';
564 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>";
566 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>";
569 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
572 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
573 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
577 print
'<td class="center wraponsmartphone">';
583 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
586 print
'<td class="right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"></td>';
587 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
591 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
592 print
'<td class="maxwidthonsmartphone right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
593 print
'<div class="switchfolderperms folderperms_'.$obj->module.
'"'.($isexpanded ?
' style="display:none;"' :
'').
'>';
594 print
img_picto(
'',
'folder',
'class="marginright"');
596 print
'<div class="switchfolderperms folderopenperms_'.$obj->module.
'"'.(!$isexpanded ?
' style="display:none;"' :
'').
'>';
597 print
img_picto(
'',
'folder-open',
'class="marginright"');
603 print
'<!-- '.$obj->module.
'->'.$obj->perms.($obj->subperms ?
'->'.$obj->subperms :
'').
' -->'.
"\n";
604 print
'<tr class="oddeven trtohide_'.$obj->module.
'"'.(!$isexpanded ?
' style="display:none"' :
'').
'>';
607 print
'<td class="maxwidthonsmartphone tdoverflowmax200">';
611 if (!empty(
$object->admin) && !empty($objMod->rights_admin_allowed)) {
612 print
'<!-- perm is a perm allowed to any admin -->';
614 print
'<td class="center">'.img_picto($langs->trans(
"AdministratorDesc"),
'star').
'</td>';
616 print
'<td class="center nowrap">';
617 print
img_picto($langs->trans(
"Active"),
'switch_on',
'', 0, 0, 0,
'',
'opacitymedium');
622 } elseif (in_array($obj->id, $permsuser)) {
623 print
'<!-- user has perm -->';
625 print
'<td class="center">';
626 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.
'">';
628 print
img_picto($langs->trans(
"Remove"),
'switch_on');
631 print
'<td class="center nowrap">';
632 print
img_picto($langs->trans(
"Active"),
'switch_on',
'', 0, 0, 0,
'',
'opacitymedium');
637 } elseif (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero)) {
638 print
'<!-- permsgroupbyentitypluszero -->';
639 if (in_array($obj->id, $permsgroupbyentitypluszero)) {
640 print
'<td class="center nowrap">';
641 print
img_picto($langs->trans(
"Active"),
'switch_on',
'', 0, 0, 0,
'',
'opacitymedium');
645 print $form->textwithtooltip($langs->trans(
"Inherited"), $langs->trans(
"PermissionInheritedFromAGroup"));
650 print
'<td class="center nowrap">';
651 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_picto($langs->trans(
"Add"),
'switch_off');
656 print
'<td class="center nowrap">';
657 print
img_picto($langs->trans(
"Disabled"),
'switch_off',
'', 0, 0, 0,
'',
'opacitymedium');
665 print
'<!-- do not own permission -->';
667 print
'<td class="center">';
668 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.
'">';
670 print
img_picto($langs->trans(
"Add"),
'switch_off');
674 print
img_picto($langs->trans(
"Disabled"),
'switch_off',
'', 0, 0, 0,
'',
'opacitymedium');
677 print
'<td class="center">';
682 $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)));
684 print
'<td colspan="2">';
690 if (in_array($idtouse, array(121, 122, 125, 126))) {
693 if ($langs->trans(
"Permission".$idtouse.
'b') !=
"Permission".$idtouse.
'b') {
694 print
'<br><span class="opacitymedium">'.$langs->trans(
"Permission".$idtouse.
'b').
'</span>';
696 if ($langs->trans(
"Permission".$obj->id.
'c') !=
"Permission".$obj->id.
'c') {
697 print
'<br><span class="opacitymedium">'.$langs->trans(
"Permission".$obj->id.
'c').
'</span>';
700 if (preg_match(
'/_advance$/', $obj->perms)) {
701 print
' <span class="opacitymedium">('.$langs->trans(
"AdvancedModeOnly").
')</span>';
705 if ($obj->module ==
'user' && $obj->perms ==
'user' && $obj->subperms ==
'password') {
706 if ((!empty(
$object->admin) && !empty($objMod->rights_admin_allowed)) ||
707 in_array($obj->id, $permsuser) ||
708 (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero) && in_array($obj->id, $permsgroupbyentitypluszero))) {
709 print
' '.img_warning($langs->trans(
"AllowPasswordResetBySendingANewPassByEmail"));
713 if ($obj->module ==
'user' && $obj->perms ==
'user' && ($obj->subperms ==
'creer' || $obj->subperms ==
'create')) {
714 if ((!empty(
$object->admin) && !empty($objMod->rights_admin_allowed)) ||
715 in_array($obj->id, $permsuser) ||
716 (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero) && in_array($obj->id, $permsgroupbyentitypluszero))) {
717 print
' '.img_warning($langs->trans(
"AllowAnyPrivileges"));
721 if ($obj->module ==
'banque' && $obj->perms ==
'lire') {
722 if (isModEnabled(
"accounting") &&
$object->hasRight(
'accounting',
'chartofaccount')) {
723 print
' '.img_warning($langs->trans(
"WarningReadBankAlsoAllowedIfUserHasPermission"));
731 print
'<td class="right">';
732 $htmltext = $langs->trans(
"ID").
': '.$obj->id;
733 $htmltext .=
'<br>'.$langs->trans(
"Permission").
': user->hasRight(\''.
dol_escape_htmltag($obj->module).
'\', \
''.dol_escape_htmltag($obj->perms).
'\''.($obj->subperms ?
', \''.dol_escape_htmltag($obj->subperms).
'\'' :
'').
')';
734 print $form->textwithpicto(
'', $htmltext);
750print
'$(".tdforbreakperms:not(.alink)").on("click", function(){
751 console.log("Click on tdforbreakperms");
752 moduletohide = $(this).data("hide-perms");
753 j = $(this).data("j");
754 if ($("#idforbreakperms_"+moduletohide).val() == 1) {
755 console.log("idforbreakperms_"+moduletohide+" has value hidden=1");
756 $(".trtohide_"+moduletohide).show();
757 $(".permtoshow_"+moduletohide).hide();
758 $(".permtohide_"+moduletohide).show();
759 $(".folderperms_"+moduletohide).hide();
760 $(".folderopenperms_"+moduletohide).show();
761 $("#idforbreakperms_"+moduletohide).val("0");
763 console.log("idforbreakperms_"+moduletohide+" has value hidden=0");
764 $(".trtohide_"+moduletohide).hide();
765 $(".folderopenperms_"+moduletohide).hide();
766 $(".folderperms_"+moduletohide).show();
767 $(".permtoshow_"+moduletohide).show();
768 $(".permtohide_"+moduletohide).hide();
769 $("#idforbreakperms_"+moduletohide).val("1");
772 // Now rebuild the value for cookie
774 $(".trforbreakperms").each(function(index) {
775 //console.log( index + ": " + $( this ).data("j") + " " + $( this ).data("hide-perms") + " " + $("input[data-j="+(index+1)+"]").val());
776 if ($("input[data-j="+(index+1)+"]").val() == 1) {
777 hideuserperm=hideuserperm+","+(index+1);
781 date = new Date(); date.setTime(date.getTime()+(30*86400000));
783 console.log("set cookie DOLUSER_PERMS_HIDE_GRP="+hideuserperm);
784 document.cookie = "DOLUSER_PERMS_HIDE_GRP=" + hideuserperm + "; expires=" + date.toGMTString() + "; path=/ ";
786 console.log("delete cookie DOLUSER_PERMS_HIDE_GRP");
787 document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
793print
'$(".showallperms").on("click", function(){
794 console.log("Click on showallperms");
796 console.log("delete cookie DOLUSER_PERMS_HIDE_GRP from showallperms click");
797 document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
798 $(".tdforbreakperms").each( function(){
799 moduletohide = $(this).data("hide-perms");
800 //console.log(moduletohide);
801 if ($("#idforbreakperms_"+moduletohide).val() != 0) {
802 $(this).trigger("click"); // emulate the click, so the cooki will be resaved
807$(".hideallperms").on("click", function(){
808 console.log("Click on hideallperms");
810 $(".tdforbreakperms").each( function(){
811 moduletohide = $(this).data("hide-perms");
812 //console.log(moduletohide);
813 if ($("#idforbreakperms_"+moduletohide).val() != 1) {
814 $(this).trigger("click"); // emulate the click, so the cooki will be resaved
822print
'.switchfolderperms{
827$parameters = array();
828$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.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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.
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_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.
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...
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.