29if (!defined(
'CSRFCHECK_WITH_TOKEN')) {
30 define(
'CSRFCHECK_WITH_TOKEN',
'1');
34require
'../main.inc.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/usergroups.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
40$langs->loadLangs(array(
'users',
'admin'));
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';
50if (!isset($id) || empty($id)) {
55$canreaduser = ($user->admin || $user->hasRight(
"user",
"user",
"read"));
57$caneditperms = ($user->admin || $user->hasRight(
"user",
"user",
"write"));
59if (!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);
67if (isset($user->socid) && $user->socid > 0) {
68 $socid = $user->socid;
70$feature2 = (($socid && $user->hasRight(
"user",
"self",
"write")) ?
'' :
'user');
72if ($user->id == $id && (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !$user->hasRight(
"user",
"self_advance",
"readperms") && empty($user->admin))) {
76$result =
restrictedArea($user,
'user', $id,
'user&user', $feature2);
77if ($user->id <> $id && !$canreaduser) {
81$object =
new User($db);
82$object->fetch($id,
'',
'', 1);
85$entity = $conf->entity;
88$hookmanager->initHooks(array(
'usercard',
'userperms',
'globalcard'));
95$parameters = array(
'socid'=>$socid);
96$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
101if (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);
111 if ($object->id == $user->id) {
112 $user->clearrights();
114 $menumanager->loadMenu();
117 $object->clearrights();
118 $object->getrights();
121 if ($action ==
'delrights' && $caneditperms && $confirm ==
'yes') {
122 $edituser =
new User($db);
123 $edituser->fetch($object->id);
124 $result = $edituser->delrights($rights, $module,
'', $entity);
130 if ($object->id == $user->id) {
131 $user->clearrights();
133 $menumanager->loadMenu();
136 $object->clearrights();
137 $object->getrights();
146$form =
new Form($db);
148$person_name = !empty($object->firstname) ? $object->lastname.
", ".$object->firstname : $object->lastname;
149$title = $person_name.
" - ".$langs->trans(
'Permissions');
155$title = $langs->trans(
"User");
165foreach ($modulesdir as $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);
173 include_once $dir.$file;
174 $objMod =
new $modName($db);
177 if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
178 foreach ($objMod->langfiles as $domain) {
179 $langs->load($domain);
183 if ($objMod->rights_class) {
184 $ret = $objMod->insert_permissions(0, $entity);
185 $modules[$objMod->rights_class] = $objMod;
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);
205$result = $db->query($sql);
207 $num = $db->num_rows($result);
210 $obj = $db->fetch_object($result);
211 array_push($permsuser, $obj->fk_id);
220$permsgroupbyentity = array();
222$sql =
"SELECT DISTINCT gr.fk_id, gu.entity";
223$sql .=
" FROM ".MAIN_DB_PREFIX.
"usergroup_rights as gr,";
224$sql .=
" ".MAIN_DB_PREFIX.
"usergroup_user as gu";
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);
231$result = $db->query($sql);
233 $num = $db->num_rows($result);
236 $obj = $db->fetch_object($result);
237 if (!isset($permsgroupbyentity[$obj->entity])) {
238 $permsgroupbyentity[$obj->entity] = array();
240 array_push($permsgroupbyentity[$obj->entity], $obj->fk_id);
256if ($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>';
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>';
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');
267dol_banner_tab($object,
'id', $linkback, $user->hasRight(
"user",
"user",
"read") || $user->admin,
'rowid',
'ref', $morehtmlref);
270print
'<div class="fichecenter">';
272print
'<div class="underbanner clearboth"></div>';
273print
'<table class="border centpercent tableforfield">';
276print
'<tr><td id="anchorforperms" class="titlefield">'.$langs->trans(
"Login").
'</td>';
277if (!empty($object->ldap_sid) && $object->statut == 0) {
278 print
'<td class="error">';
279 print $langs->trans(
"LoginAccountDisableInDolibarr");
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"');
298$text = $langs->trans(
"Type");
299print $form->textwithpicto($text, $langs->trans(
"InternalExternalDesc"));
301$type = $langs->trans(
"Internal");
302if ($object->socid > 0) {
303 $type = $langs->trans(
"External");
305print
'<span class="badgeneutral">';
307if ($object->ldap_sid) {
308 print
' ('.$langs->trans(
"DomainUser").
')';
311print
'</td></tr>'.
"\n";
319 print
info_admin($langs->trans(
"WarningOnlyPermissionOfActivatedModules"));
322if (!empty($object->socid)) {
326$parameters = array(
'permsgroupbyentity'=>$permsgroupbyentity);
327$reshook = $hookmanager->executeHooks(
'insertExtraHeader', $parameters, $object, $action);
332$listofexpandedmodules = array();
336print
'<div class="div-table-responsive-no-min">';
337print
'<table class="noborder centpercent">';
339print
'<tr class="liste_titre">';
340print
'<td>'.$langs->trans(
"Module").
'</td>';
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>";
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>";
352print
'<td class="right nowrap" colspan="2">';
353print
'<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>';
355print
'<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>';
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%'";
365$sql .=
" AND r.entity = ".((int) $entity);
366$sql .=
" ORDER BY r.family_position, r.module_position, r.module, r.id";
368$result = $db->query($sql);
370 $num = $db->num_rows($result);
375 $obj = $db->fetch_object($result);
378 if (!isset($obj->module) || empty($modules[$obj->module])) {
384 if (isModEnabled(
"reception")) {
386 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande' && $obj->subperms ==
'receptionner') {
390 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande_advance' && $obj->subperms ==
'check') {
396 $objMod = $modules[$obj->module];
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)) {
405 $newmoduleposition = $modules[$obj->module]->module_position;
408 $objMod = $modules[$obj->module];
409 if (is_object($objMod) && $objMod->isCoreOrExternalModule() ==
'external' && $newmoduleposition < 100000) {
410 $newmoduleposition += 100000;
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).
"'";
417 $db->query($sqlupdate);
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%'";
429$sql .=
" AND r.entity = ".((int) $entity);
430if (empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
431 $sql .=
" AND r.perms NOT LIKE '%_advance'";
433$sql .=
" ORDER BY r.family_position, r.module_position, r.module, r.id";
435$result = $db->query($sql);
437 $num = $db->num_rows($result);
441 $cookietohidegroup = (empty($_COOKIE[
"DOLUSER_PERMS_HIDE_GRP"]) ?
'' : preg_replace(
'/^,/',
'', $_COOKIE[
"DOLUSER_PERMS_HIDE_GRP"]));
442 $cookietohidegrouparray = explode(
',', $cookietohidegroup);
446 $obj = $db->fetch_object($result);
449 if (empty($modules[$obj->module])) {
455 if (isModEnabled(
"reception")) {
457 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande' && $obj->subperms ==
'receptionner') {
461 if ($obj->module ==
'fournisseur' && $obj->perms ==
'commande_advance' && $obj->subperms ==
'check') {
467 $objMod = $modules[$obj->module];
494 if (GETPOSTISSET(
'forbreakperms_'.$obj->module)) {
495 $ishidden =
GETPOST(
'forbreakperms_'.$obj->module,
'int');
496 } elseif (in_array($j, $cookietohidegrouparray)) {
501 $isexpanded = ! $ishidden;
504 $permsgroupbyentitypluszero = array();
505 if (!empty($permsgroupbyentity[0])) {
506 $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[0]);
508 if (!empty($permsgroupbyentity[$entity])) {
509 $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[$entity]);
514 if (isset($obj->module) && ($oldmod <> $obj->module)) {
515 $oldmod = $obj->module;
518 if (GETPOSTISSET(
'forbreakperms_'.$obj->module)) {
519 $ishidden =
GETPOST(
'forbreakperms_'.$obj->module,
'int');
520 } elseif (in_array($j, $cookietohidegrouparray)) {
525 $isexpanded = ! $ishidden;
529 $objMod = $modules[$obj->module];
530 $picto = ($objMod->picto ? $objMod->picto :
'generic');
533 print
'<tr class="oddeven trforbreakperms" data-hide-perms="'.$obj->module.
'" data-j="'.$j.
'">';
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>';
541 if (($caneditperms && empty($objMod->rights_admin_allowed)) || empty($object->admin)) {
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>";
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>";
550 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
553 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
554 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </td>';
558 print
'<td class="center wraponsmartphone">';
564 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
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).
'"> </td>';
572 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"> </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"');
577 print
'<div class="switchfolderperms folderopenperms_'.$obj->module.
'"'.(!$isexpanded ?
' style="display:none;"' :
'').
'>';
578 print
img_picto(
'',
'folder-open',
'class="marginright"');
584 print
'<!-- '.$obj->module.
'->'.$obj->perms.($obj->subperms ?
'->'.$obj->subperms :
'').
' -->'.
"\n";
585 print
'<tr class="oddeven trtohide_'.$obj->module.
'"'.(!$isexpanded ?
' style="display:none"' :
'').
'>';
588 print
'<td class="maxwidthonsmartphone tdoverflowonsmartphone">';
592 if (!empty($object->admin) && !empty($objMod->rights_admin_allowed)) {
594 print
'<td class="center">'.img_picto($langs->trans(
"Administrator"),
'star').
'</td>';
596 print
'<td> </td>';
598 print
'<td class="center nowrap">';
599 if (!$caneditperms) {
600 print
img_picto($langs->trans(
"Active"),
'switch_on',
'',
false, 0, 0,
'',
'opacitymedium');
604 } elseif (in_array($obj->id, $permsuser)) {
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.
'">';
609 print
img_picto($langs->trans(
"Remove"),
'switch_on');
612 print
'<td> </td>';
614 print
'<td class="center nowrap">';
615 if (!$caneditperms) {
616 print
img_picto($langs->trans(
"Active"),
'switch_on',
'',
false, 0, 0,
'',
'opacitymedium');
620 } elseif (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero)) {
621 if (in_array($obj->id, $permsgroupbyentitypluszero)) {
622 print
'<td class="center nowrap">';
623 print
img_picto($langs->trans(
"Active"),
'switch_on',
'',
false, 0, 0,
'',
'opacitymedium');
627 print
'<td class="">';
628 print $form->textwithtooltip($langs->trans(
"Inherited"), $langs->trans(
"PermissionInheritedFromAGroup"));
631 print
'<td>c </td>';
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.
'">';
639 print
img_picto($langs->trans(
"Add"),
'switch_off');
646 print
'<td> </td>';
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.
'">';
654 print
img_picto($langs->trans(
"Add"),
'switch_off');
658 print
img_picto($langs->trans(
"Disabled"),
'switch_off',
'',
false, 0, 0,
'',
'opacitymedium');
661 print
'<td class="center">';
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)));
668 print
'<td colspan="2">';
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>';
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);
701print
'$(".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");
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");
723 // Now rebuild the value for cookie
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);
732 date = new Date(); date.setTime(date.getTime()+(30*86400000));
734 console.log("set cookie DOLUSER_PERMS_HIDE_GRP="+hideuserperm);
735 document.cookie = "DOLUSER_PERMS_HIDE_GRP=" + hideuserperm + "; expires=" + date.toGMTString() + "; path=/ ";
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=/ ";
744print
'$(".showallperms").on("click", function(){
745 console.log("Click on showallperms");
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
758$(".hideallperms").on("click", function(){
759 console.log("Click on hideallperms");
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
773print
'.switchfolderperms{
778$parameters = array();
779$reshook = $hookmanager->executeHooks(
'insertExtraFooter', $parameters, $object, $action);
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 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)
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.
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.