30if (!defined(
'CSRFCHECK_WITH_TOKEN')) {
31 define(
'CSRFCHECK_WITH_TOKEN',
'1');
35require
'../../main.inc.php';
36require_once DOL_DOCUMENT_ROOT.
'/user/class/usergroup.class.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') :
'groupperms';
60if (!isset($id) || empty($id)) {
65$permissiontoread = ($user->admin || $user->hasRight(
"user",
"user",
"read"));
67$permissiontoedit = ($user->admin || $user->hasRight(
"user",
"user",
"write"));
69$advancedpermsactive =
false;
71 $advancedpermsactive =
true;
72 $permissiontoread = ($user->admin || ($user->hasRight(
"user",
"group_advance",
"read") && $user->hasRight(
"user",
"group_advance",
"readperms")));
73 $permissiontoedit = ($user->admin || $user->hasRight(
"user",
"group_advance",
"write"));
78if (!empty($user->socid) && $user->socid > 0) {
79 $socid = $user->socid;
82if (!$permissiontoread) {
90$entity =
$conf->entity;
93$hookmanager->initHooks(array(
'groupperms',
'globalcard'));
100$parameters = array(
'socid' => $socid);
101$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
106if (empty($reshook)) {
107 if ($action ==
'addrights' && $permissiontoedit) {
109 $result = $editgroup->fetch(
$object->id);
111 $result = $editgroup->addrights($rights, $module,
'', $entity);
119 $user->clearrights();
123 if ($action ==
'delrights' && $permissiontoedit) {
125 $result = $editgroup->fetch($id);
127 $result = $editgroup->delrights($rights, $module,
'', $entity);
135 $user->clearrights();
145$form =
new Form($db);
147$title =
$object->name.
" - ".$langs->trans(
'Permissions');
149llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-user page-group_perms');
153 $title = $langs->trans(
"Group");
162 foreach ($modulesdir as $dir) {
164 if (is_resource($handle)) {
165 while (($file = readdir($handle)) !==
false) {
166 if (is_readable($dir.$file) && substr($file, 0, 3) ==
'mod' && substr($file,
dol_strlen($file) - 10) ==
'.class.php') {
167 $modName = substr($file, 0,
dol_strlen($file) - 10);
170 include_once $dir.$file;
171 $objMod =
new $modName($db);
172 '@phan-var-force DolibarrModules $objMod';
174 if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
175 foreach ($objMod->langfiles as $domain) {
176 $langs->load($domain);
180 if ($objMod->rights_class) {
181 $ret = $objMod->insert_permissions(0, $entity);
182 $modules[$objMod->rights_class] = $objMod;
193 $permsgroupbyentity = array();
195 $sql =
"SELECT DISTINCT r.id, r.libelle, r.module, gr.entity";
196 $sql .=
" FROM ".MAIN_DB_PREFIX.
"rights_def as r,";
197 $sql .=
" ".MAIN_DB_PREFIX.
"usergroup_rights as gr";
198 $sql .=
" WHERE gr.fk_id = r.id";
199 $sql .=
" AND gr.entity = ".((int) $entity);
200 $sql .=
" AND gr.fk_usergroup = ".((int)
$object->id);
203 $result = $db->query($sql);
205 $num = $db->num_rows($result);
208 $obj = $db->fetch_object($result);
209 if (!isset($permsgroupbyentity[$obj->entity])) {
210 $permsgroupbyentity[$obj->entity] = array();
212 array_push($permsgroupbyentity[$obj->entity], $obj->id);
224 $linkback =
'<a href="'.DOL_URL_ROOT.
'/user/group/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
226 dol_banner_tab(
$object,
'id', $linkback, $user->hasRight(
"user",
"user",
"read") || $user->admin);
229 print
'<div class="fichehalfleft">';
231 print
'<div class="underbanner clearboth"></div>';
232 print
'<table class="border centpercent tableforfield">';
235 if (isModEnabled(
'multicompany')) {
236 print
'<tr><td class="titlefield">'.$langs->trans(
"Name").
'</td>';
237 print
'<td class="valeur">'.dol_escape_htmltag(
$object->name);
239 print
img_picto($langs->trans(
"GlobalGroup"),
'redstar');
241 print
"</td></tr>\n";
245 if (isModEnabled(
'multicompany') && is_object($mc) && !
getDolGlobalString(
'MULTICOMPANY_TRANSVERSE_MODE') &&
$conf->entity == 1 && $user->admin && !$user->entity) {
247 print
"<tr>".
'<td class="titlefield">'.$langs->trans(
"Entity").
'</td>';
248 print
'<td class="valeur">'.dol_escape_htmltag($mc->label);
249 print
"</td></tr>\n";
256 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_view.tpl.php';
259 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
265 print
'<div class="clearboth"></div>';
271 print
info_admin($langs->trans(
"WarningOnlyPermissionOfActivatedModules").
" ".$langs->trans(
"YouCanEnableModulesFrom"));
275 $parameters = array();
276 $reshook = $hookmanager->executeHooks(
'insertExtraHeader', $parameters,
$object, $action);
282 print
'<div class="div-table-responsive-no-min">';
283 print
'<table class="noborder centpercent">';
284 print
'<tr class="liste_titre">';
285 print
'<td>'.$langs->trans(
"Module").
'</td>';
286 if ($permissiontoedit) {
287 print
'<td class="center nowrap">';
288 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>";
290 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>";
295 print
'<td class="center" width="24"></td>';
296 print
'<td class="right nowrap" colspan="2">';
297 print
'<a class="showallperms" title="'.dol_escape_htmltag($langs->trans(
"ShowAllPerms")).
'" alt="'.
dol_escape_htmltag($langs->trans(
"ShowAllPerms")).
'" href="#">'.
img_picto(
'',
'folder-open',
'class="paddingright"').
'<span class="hideonsmartphone">'.$langs->trans(
"ExpandAll").
'</span></a>';
299 print
'<a class="hideallperms" title="'.dol_escape_htmltag($langs->trans(
"HideAllPerms")).
'" alt="'.
dol_escape_htmltag($langs->trans(
"HideAllPerms")).
'" href="#">'.
img_picto(
'',
'folder',
'class="paddingright"').
'<span class="hideonsmartphone">'.$langs->trans(
"UndoExpandAll").
'</span></a>';
303 $sql =
"SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
304 $sql .=
" FROM ".MAIN_DB_PREFIX.
"rights_def as r";
305 $sql .=
" WHERE r.libelle NOT LIKE 'tou%'";
306 $sql .=
" AND r.entity = ".((int) $entity);
308 $sql .=
" AND r.perms NOT LIKE '%_advance'";
310 $sql .=
" ORDER BY r.family_position, r.module_position, r.module, r.id";
312 $result = $db->query($sql);
314 $num = $db->num_rows($result);
319 $cookietohidegroup = (empty($_COOKIE[
"DOLUSER_PERMS_HIDE_GRP"]) ?
'' : preg_replace(
'/^,/',
'', $_COOKIE[
"DOLUSER_PERMS_HIDE_GRP"]));
320 $cookietohidegrouparray = explode(
',', $cookietohidegroup);
323 $obj = $db->fetch_object($result);
326 if (empty($modules[$obj->module])) {
331 $objMod = $modules[$obj->module];
333 if (GETPOSTISSET(
'forbreakperms_'.$obj->module)) {
334 $ishidden =
GETPOSTINT(
'forbreakperms_'.$obj->module);
335 } elseif (in_array($j, $cookietohidegrouparray)) {
340 $isexpanded = ! $ishidden;
343 if (isset($obj->module) && ($oldmod != $obj->module)) {
344 $oldmod = $obj->module;
347 if (GETPOSTISSET(
'forbreakperms_'.$obj->module)) {
348 $ishidden =
GETPOSTINT(
'forbreakperms_'.$obj->module);
349 } elseif (in_array($j, $cookietohidegrouparray)) {
354 $isexpanded = ! $ishidden;
356 $objMod = $modules[$obj->module];
357 $picto = ($objMod->picto ? $objMod->picto :
'generic');
360 print
'<tr class="oddeven trforbreakperms trforbreaknobg" data-hide-perms="'.$obj->module.
'" data-j="'.$j.
'">';
362 print
'<td class="maxwidthonsmartphone tdoverflowmax200 tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'" title="'.
dol_escape_htmltag($objMod->getName()).
'">';
363 print
'<input type="hidden" name="forbreakperms_'.$obj->module.
'" id="idforbreakperms_'.$obj->module.
'" css="cssforfieldishiden" data-j="'.$j.
'" value="'.($isexpanded ?
'0' :
"1").
'">';
364 print
img_object(
'', $picto,
'class="pictoobjectwidth paddingright"').
' '.$objMod->getName();
365 print
'<a name="'.$objMod->getName().
'"></a>';
369 if ($permissiontoedit) {
370 print
'<td class="tdforbreakperms tdforbreakpermsifnotempty center width50 nowraponall" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
371 print
'<span class="permtohide_'.dol_escape_htmltag($obj->module).
'" '.(!$isexpanded ?
' style="display:none"' :
'').
'>';
372 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>";
374 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>";
377 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
380 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"></td>';
381 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"></td>';
384 print
'<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'"></td>';
385 print
'<td class="maxwidthonsmartphone right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).
'">';
386 print
'<div class="switchfolderperms inline-block marginrightonly folderperms_'.dol_escape_htmltag($obj->module).
'"'.($isexpanded ?
' style="display:none;"' :
'').
'>';
387 print
img_picto(
'',
'folder',
'class="marginright"');
389 print
'<div class="switchfolderperms inline-block marginrightonly folderopenperms_'.dol_escape_htmltag($obj->module).
'"'.(!$isexpanded ?
' style="display:none;"' :
'').
'>';
390 print
img_picto(
'',
'folder-open',
'class="marginright"');
396 $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)));
398 print
'<!-- '.$obj->module.
'->'.$obj->perms.($obj->subperms ?
'->'.$obj->subperms :
'').
' -->'.
"\n";
399 print
'<tr class="oddeven trtohide_'.$obj->module.
'"'.(!$isexpanded ?
' style="display:none"' :
'').
'>';
403 print
'<td class="maxwidthonsmartphone">';
407 if (!empty($permsgroupbyentity[$entity]) && is_array($permsgroupbyentity[$entity])) {
408 if (in_array($obj->id, $permsgroupbyentity[$entity])) {
410 if ($permissiontoedit) {
411 print
'<td class="center nowrap">';
412 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=delrights&token='.
newToken().
'&entity='.$entity.
'&rights='.$obj->id.
'&confirm=yes&updatedmodulename='.$obj->module.
'">';
414 print
img_picto($langs->trans(
"Remove"),
'switch_on');
420 print
'<td class="center nowrap">';
421 print
img_picto($langs->trans(
"Active"),
'tick');
425 if ($permissiontoedit) {
426 print
'<td class="center nowrap">';
427 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.
'">';
429 print
img_picto($langs->trans(
"Add"),
'switch_off');
439 if ($permissiontoedit) {
440 print
'<td class="center nowrap">';
441 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.
'">';
443 print
img_picto($langs->trans(
"Add"),
'switch_off');
455 if (in_array($idtouse, array(121, 122, 125, 126))) {
458 if ($langs->trans(
"Permission".$idtouse.
'b') !=
"Permission".$idtouse.
'b') {
459 print
'<br><span class="opacitymedium">'.$langs->trans(
"Permission".$idtouse.
'b').
'</span>';
461 if ($langs->trans(
"Permission".$obj->id.
'c') !=
"Permission".$obj->id.
'c') {
462 print
'<br><span class="opacitymedium">'.$langs->trans(
"Permission".$obj->id.
'c').
'</span>';
465 if (preg_match(
'/_advance$/', $obj->perms)) {
466 print
' <span class="opacitymedium">('.$langs->trans(
"AdvancedModeOnly").
')</span>';
473 print
'<td class="right">';
474 $htmltext = $langs->trans(
"ID").
': '.$obj->id;
475 $htmltext .=
'<br>'.$langs->trans(
"Permission").
': user->hasRight(\''.
dol_escape_htmltag($obj->module).
'\', \
''.dol_escape_htmltag($obj->perms).
'\''.($obj->subperms ?
', \''.dol_escape_htmltag($obj->subperms).
'\'' :
'').
')';
476 print $form->textwithpicto(
'', $htmltext, 1,
'help',
'inline-block marginrightonly');
492 print
'$(".tdforbreakperms:not(.alink)").on("click", function(){
493 console.log("Click on tdforbreakperms");
494 moduletohide = $(this).data("hide-perms");
495 j = $(this).data("j");
496 if ($("#idforbreakperms_"+moduletohide).val() == 1) {
497 console.log("idforbreakperms_"+moduletohide+" has value hidden=1, so we show all lines");
498 $(".trtohide_"+moduletohide).show();
499 $(".permtoshow_"+moduletohide).hide();
500 $(".permtohide_"+moduletohide).show();
501 $(".folderperms_"+moduletohide).hide();
502 $(".folderopenperms_"+moduletohide).show();
503 $("#idforbreakperms_"+moduletohide).val("0");
504 } else if (! $(this).hasClass("tdforbreakpermsifnotempty")) {
505 console.log("idforbreakperms_"+moduletohide+" has value hidden=0, so we hide all lines");
506 $(".trtohide_"+moduletohide).hide();
507 $(".folderopenperms_"+moduletohide).hide();
508 $(".folderperms_"+moduletohide).show();
509 $(".permtoshow_"+moduletohide).show();
510 $(".permtohide_"+moduletohide).hide();
511 $("#idforbreakperms_"+moduletohide).val("1");
514 // Now rebuild the value for cookie
516 $(".trforbreakperms").each(function(index) {
517 //console.log( index + ": " + $( this ).data("j") + " " + $( this ).data("hide-perms") + " " + $("input[data-j="+(index+1)+"]").val());
518 if ($("input[data-j="+(index+1)+"]").val() == 1) {
519 hideuserperm=hideuserperm+","+(index+1);
523 date = new Date(); date.setTime(date.getTime()+(30*86400000));
525 console.log("set cookie DOLUSER_PERMS_HIDE_GRP="+hideuserperm);
526 document.cookie = "DOLUSER_PERMS_HIDE_GRP=" + hideuserperm + "; expires=" + date.toGMTString() + "; path=/ ";
528 console.log("delete cookie DOLUSER_PERMS_HIDE_GRP");
529 document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
535 print
'$(".showallperms").on("click", function(){
536 console.log("Click on showallperms");
538 console.log("delete cookie DOLUSER_PERMS_HIDE_GRP from showallperms click");
539 document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
540 $(".tdforbreakperms").each( function(){
541 moduletohide = $(this).data("hide-perms");
542 //console.log(moduletohide);
543 if ($("#idforbreakperms_"+moduletohide).val() != 0) {
544 $(this).trigger("click"); // emulate the click, so the cooki will be resaved
549 $(".hideallperms").on("click", function(){
550 console.log("Click on hideallperms");
552 $(".tdforbreakperms").each( function(){
553 moduletohide = $(this).data("hide-perms");
554 //console.log(moduletohide);
555 if ($("#idforbreakperms_"+moduletohide).val() != 1) {
556 $(this).trigger("click"); // emulate the click, so the cooki will be resaved
564 print
'.switchfolderperms{
569 $parameters = array();
570 $reshook = $hookmanager->executeHooks(
'insertExtraFooter', $parameters,
$object, $action);
$id
Support class for third parties, contacts, members, users or resources.
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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 user groups.
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.
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.
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...
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...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
group_prepare_head($object)
Prepare array with list of tabs.