123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805 |
- <?php
- /* Copyright (C) 2002-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2002-2003 Jean-Louis Bergamo <jlb@j1b.org>
- * Copyright (C) 2004-2020 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
- * Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2020 Tobias Sekan <tobias.sekan@startmail.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/user/perms.php
- * \brief Page to set permission of a user record
- */
- if (!defined('CSRFCHECK_WITH_TOKEN')) {
- define('CSRFCHECK_WITH_TOKEN', '1'); // Force use of CSRF protection with tokens even for GET
- }
- // Load Dolibarr environment
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/usergroups.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
- // Load translation files required by page
- $langs->loadLangs(array('users', 'admin'));
- $id = GETPOST('id', 'int');
- $action = GETPOST('action', 'aZ09');
- $confirm = GETPOST('confirm', 'alpha');
- $module = GETPOST('module', 'alpha');
- $rights = GETPOST('rights', 'int');
- $updatedmodulename = GETPOST('updatedmodulename', 'alpha');
- $contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'userperms'; // To manage different context of search
- if (!isset($id) || empty($id)) {
- accessforbidden();
- }
- // Define if user can read permissions
- $canreaduser = ($user->admin || $user->hasRight("user", "user", "read"));
- // Define if user can modify other users and permissions
- $caneditperms = ($user->admin || $user->hasRight("user", "user", "write"));
- // Advanced permissions
- if (getDolGlobalString('MAIN_USE_ADVANCED_PERMS')) {
- $canreaduser = ($user->admin || ($user->hasRight("user", "user", "read") && $user->hasRight("user", "user_advance", "readperms")));
- $caneditselfperms = ($user->id == $id && $user->hasRight("user", "self_advance", "writeperms"));
- $caneditperms = (($caneditperms || $caneditselfperms) ? 1 : 0);
- }
- // Security check
- $socid = 0;
- if (isset($user->socid) && $user->socid > 0) {
- $socid = $user->socid;
- }
- $feature2 = (($socid && $user->hasRight("user", "self", "write")) ? '' : 'user');
- // A user can always read its own card if not advanced perms enabled, or if he has advanced perms, except for admin
- if ($user->id == $id && (getDolGlobalString('MAIN_USE_ADVANCED_PERMS') && !$user->hasRight("user", "self_advance", "readperms") && empty($user->admin))) {
- accessforbidden();
- }
- $result = restrictedArea($user, 'user', $id, 'user&user', $feature2);
- if ($user->id <> $id && !$canreaduser) {
- accessforbidden();
- }
- $object = new User($db);
- $object->fetch($id, '', '', 1);
- $object->getrights();
- $entity = $conf->entity;
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('usercard', 'userperms', 'globalcard'));
- /*
- * Actions
- */
- $parameters = array('socid'=>$socid);
- $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- }
- if (empty($reshook)) {
- if ($action == 'addrights' && $caneditperms && $confirm == 'yes') {
- $edituser = new User($db);
- $edituser->fetch($object->id);
- $result = $edituser->addrights($rights, $module, '', $entity);
- if ($result < 0) {
- setEventMessages($edituser->error, $edituser->errors, 'errors');
- }
- // If we are changing our own permissions, we reload permissions and menu
- if ($object->id == $user->id) {
- $user->clearrights();
- $user->getrights();
- $menumanager->loadMenu();
- }
- $object->clearrights();
- $object->getrights();
- }
- if ($action == 'delrights' && $caneditperms && $confirm == 'yes') {
- $edituser = new User($db);
- $edituser->fetch($object->id);
- $result = $edituser->delrights($rights, $module, '', $entity);
- if ($result < 0) {
- setEventMessages($edituser->error, $edituser->errors, 'errors');
- }
- // If we are changing our own permissions, we reload permissions and menu
- if ($object->id == $user->id) {
- $user->clearrights();
- $user->getrights();
- $menumanager->loadMenu();
- }
- $object->clearrights();
- $object->getrights();
- }
- }
- /*
- * View
- */
- $form = new Form($db);
- $person_name = !empty($object->firstname) ? $object->lastname.", ".$object->firstname : $object->lastname;
- $title = $person_name." - ".$langs->trans('Permissions');
- $help_url = '';
- llxHeader('', $title, $help_url);
- $head = user_prepare_head($object);
- $title = $langs->trans("User");
- print dol_get_fiche_head($head, 'rights', $title, -1, 'user');
- $db->begin();
- // Search all modules with permission and reload permissions def.
- $modules = array();
- $modulesdir = dolGetModulesDirs();
- foreach ($modulesdir as $dir) {
- $handle = @opendir(dol_osencode($dir));
- if (is_resource($handle)) {
- while (($file = readdir($handle)) !== false) {
- if (is_readable($dir.$file) && substr($file, 0, 3) == 'mod' && substr($file, dol_strlen($file) - 10) == '.class.php') {
- $modName = substr($file, 0, dol_strlen($file) - 10);
- if ($modName) {
- include_once $dir.$file;
- $objMod = new $modName($db);
- // Load all lang files of module
- if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
- foreach ($objMod->langfiles as $domain) {
- $langs->load($domain);
- }
- }
- // Load all permissions
- if ($objMod->rights_class) {
- $ret = $objMod->insert_permissions(0, $entity);
- $modules[$objMod->rights_class] = $objMod;
- //print "modules[".$objMod->rights_class."]=$objMod;";
- }
- }
- }
- }
- }
- }
- $db->commit();
- // Read permissions of edited user
- $permsuser = array();
- $sql = "SELECT DISTINCT ur.fk_id";
- $sql .= " FROM ".MAIN_DB_PREFIX."user_rights as ur";
- $sql .= " WHERE ur.entity = ".((int) $entity);
- $sql .= " AND ur.fk_user = ".((int) $object->id);
- dol_syslog("get user perms", LOG_DEBUG);
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0;
- while ($i < $num) {
- $obj = $db->fetch_object($result);
- array_push($permsuser, $obj->fk_id);
- $i++;
- }
- $db->free($result);
- } else {
- dol_print_error($db);
- }
- // Read the permissions of a user inherited by its groups
- $permsgroupbyentity = array();
- $sql = "SELECT DISTINCT gr.fk_id, gu.entity"; // fk_id are permission id and entity is entity of the group
- $sql .= " FROM ".MAIN_DB_PREFIX."usergroup_rights as gr,";
- $sql .= " ".MAIN_DB_PREFIX."usergroup_user as gu"; // all groups of a user
- $sql .= " WHERE gr.entity = ".((int) $entity);
- $sql .= " AND gu.entity =".((int) $entity);
- $sql .= " AND gr.fk_usergroup = gu.fk_usergroup";
- $sql .= " AND gu.fk_user = ".((int) $object->id);
- dol_syslog("get user perms", LOG_DEBUG);
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0;
- while ($i < $num) {
- $obj = $db->fetch_object($result);
- if (!isset($permsgroupbyentity[$obj->entity])) {
- $permsgroupbyentity[$obj->entity] = array();
- }
- array_push($permsgroupbyentity[$obj->entity], $obj->fk_id);
- $i++;
- }
- $db->free($result);
- } else {
- dol_print_error($db);
- }
- /*
- * Part to add/remove permissions
- */
- $linkback = '';
- if ($user->hasRight("user", "user", "read") || $user->admin) {
- $linkback = '<a href="'.DOL_URL_ROOT.'/user/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
- }
- $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">';
- $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
- $morehtmlref .= '</a>';
- $urltovirtualcard = '/user/virtualcard.php?id='.((int) $object->id);
- $morehtmlref .= dolButtonToOpenUrlInDialogPopup('publicvirtualcard', $langs->trans("PublicVirtualCardUrl").' - '.$object->getFullName($langs), img_picto($langs->trans("PublicVirtualCardUrl"), 'card', 'class="valignmiddle marginleftonly paddingrightonly"'), $urltovirtualcard, '', 'nohover');
- dol_banner_tab($object, 'id', $linkback, $user->hasRight("user", "user", "read") || $user->admin, 'rowid', 'ref', $morehtmlref);
- print '<div class="fichecenter">';
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border centpercent tableforfield">';
- // Login
- print '<tr><td id="anchorforperms" class="titlefield">'.$langs->trans("Login").'</td>';
- if (!empty($object->ldap_sid) && $object->statut == 0) {
- print '<td class="error">';
- print $langs->trans("LoginAccountDisableInDolibarr");
- print '</td>';
- } else {
- print '<td>';
- $addadmin = '';
- if (property_exists($object, 'admin')) {
- if (isModEnabled('multicompany') && !empty($object->admin) && empty($object->entity)) {
- $addadmin .= img_picto($langs->trans("SuperAdministratorDesc"), "redstar", 'class="paddingleft"');
- } elseif (!empty($object->admin)) {
- $addadmin .= img_picto($langs->trans("AdministratorDesc"), "star", 'class="paddingleft"');
- }
- }
- print showValueWithClipboardCPButton($object->login).$addadmin;
- print '</td>';
- }
- print '</tr>'."\n";
- // Type
- print '<tr><td>';
- $text = $langs->trans("Type");
- print $form->textwithpicto($text, $langs->trans("InternalExternalDesc"));
- print '</td><td>';
- $type = $langs->trans("Internal");
- if ($object->socid > 0) {
- $type = $langs->trans("External");
- }
- print '<span class="badgeneutral">';
- print $type;
- if ($object->ldap_sid) {
- print ' ('.$langs->trans("DomainUser").')';
- }
- print '</span>';
- print '</td></tr>'."\n";
- print '</table>';
- print '</div>';
- print '<br>';
- if ($user->admin) {
- print info_admin($langs->trans("WarningOnlyPermissionOfActivatedModules"));
- }
- // If edited user is an extern user, we show warning for external users
- if (!empty($object->socid)) {
- print info_admin(showModulesExludedForExternal($modules))."\n";
- }
- $parameters = array('permsgroupbyentity'=>$permsgroupbyentity);
- $reshook = $hookmanager->executeHooks('insertExtraHeader', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- }
- $listofexpandedmodules = array();
- print "\n";
- print '<div class="div-table-responsive-no-min">';
- print '<table class="noborder centpercent">';
- print '<tr class="liste_titre">';
- print '<td>'.$langs->trans("Module").'</td>';
- if ($caneditperms) {
- print '<td class="center nowrap">';
- 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>";
- print ' / ';
- 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>";
- print '</td>';
- } else {
- print '<td></td>';
- }
- print '<td></td>';
- //print '<td></td>';
- print '<td class="right nowrap" colspan="2">';
- 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>';
- print ' | ';
- 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>';
- print '</td>';
- print '</tr>'."\n";
- // Fix bad value for module_position in table
- // ------------------------------------------
- $sql = "SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
- $sql .= " FROM ".MAIN_DB_PREFIX."rights_def as r";
- $sql .= " WHERE r.libelle NOT LIKE 'tou%'"; // On ignore droits "tous"
- $sql .= " AND r.entity = ".((int) $entity);
- $sql .= " ORDER BY r.family_position, r.module_position, r.module, r.id";
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0;
- $oldmod = '';
- while ($i < $num) {
- $obj = $db->fetch_object($result);
- // If line is for a module that does not exist anymore (absent of includes/module), we ignore it
- if (!isset($obj->module) || empty($modules[$obj->module])) {
- $i++;
- continue;
- }
- // Special cases
- if (isModEnabled("reception")) {
- // The 2 permissions in fournisseur modules are replaced by permissions into reception module
- if ($obj->module == 'fournisseur' && $obj->perms == 'commande' && $obj->subperms == 'receptionner') {
- $i++;
- continue;
- }
- if ($obj->module == 'fournisseur' && $obj->perms == 'commande_advance' && $obj->subperms == 'check') {
- $i++;
- continue;
- }
- }
- $objMod = $modules[$obj->module];
- // Save field module_position in database if value is wrong
- if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $obj->module_position < 100000)) {
- if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
- // TODO Define familyposition
- //$familyposition = $modules[$obj->module]->family_position;
- $familyposition = 0;
- $newmoduleposition = $modules[$obj->module]->module_position;
- // Correct $newmoduleposition position for external modules
- $objMod = $modules[$obj->module];
- if (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $newmoduleposition < 100000) {
- $newmoduleposition += 100000;
- }
- $sqlupdate = 'UPDATE '.MAIN_DB_PREFIX."rights_def SET module_position = ".((int) $newmoduleposition).",";
- $sqlupdate .= " family_position = ".((int) $familyposition);
- $sqlupdate .= " WHERE module_position = ".((int) $obj->module_position)." AND module = '".$db->escape($obj->module)."'";
- $db->query($sqlupdate);
- }
- }
- }
- }
- //print "xx".$conf->global->MAIN_USE_ADVANCED_PERMS;
- $sql = "SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
- $sql .= " FROM ".MAIN_DB_PREFIX."rights_def as r";
- $sql .= " WHERE r.libelle NOT LIKE 'tou%'"; // On ignore droits "tous"
- $sql .= " AND r.entity = ".((int) $entity);
- if (!getDolGlobalString('MAIN_USE_ADVANCED_PERMS')) {
- $sql .= " AND r.perms NOT LIKE '%_advance'"; // Hide advanced perms if option is not enabled
- }
- $sql .= " ORDER BY r.family_position, r.module_position, r.module, r.id";
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0; $j = 0;
- $oldmod = '';
- $cookietohidegroup = (empty($_COOKIE["DOLUSER_PERMS_HIDE_GRP"]) ? '' : preg_replace('/^,/', '', $_COOKIE["DOLUSER_PERMS_HIDE_GRP"]));
- $cookietohidegrouparray = explode(',', $cookietohidegroup);
- //var_dump($cookietohidegrouparray);
- while ($i < $num) {
- $obj = $db->fetch_object($result);
- // If line is for a module that does not exist anymore (absent of includes/module), we ignore it
- if (empty($modules[$obj->module])) {
- $i++;
- continue;
- }
- // Special cases
- if (isModEnabled("reception")) {
- // The 2 permission in fournisseur modules has been replaced by permissions into reception module
- if ($obj->module == 'fournisseur' && $obj->perms == 'commande' && $obj->subperms == 'receptionner') {
- $i++;
- continue;
- }
- if ($obj->module == 'fournisseur' && $obj->perms == 'commande_advance' && $obj->subperms == 'check') {
- $i++;
- continue;
- }
- }
- $objMod = $modules[$obj->module];
- // Save field module_position in database if value is wrong
- /*
- if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $obj->module_position < 100000)) {
- if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
- // TODO Define familyposition
- //$familyposition = $modules[$obj->module]->family_position;
- $familyposition = 0;
- $newmoduleposition = $modules[$obj->module]->module_position;
- // Correct $newmoduleposition position for external modules
- $objMod = $modules[$obj->module];
- if (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $newmoduleposition < 100000) {
- $newmoduleposition += 100000;
- }
- $sqlupdate = 'UPDATE '.MAIN_DB_PREFIX."rights_def SET module_position = ".((int) $newmoduleposition).",";
- $sqlupdate .= " family_position = ".((int) $familyposition);
- $sqlupdate .= " WHERE module_position = ".((int) $obj->module_position)." AND module = '".$db->escape($obj->module)."'";
- $db->query($sqlupdate);
- }
- }
- */
- if (GETPOSTISSET('forbreakperms_'.$obj->module)) {
- $ishidden = GETPOST('forbreakperms_'.$obj->module, 'int');
- } elseif (in_array($j, $cookietohidegrouparray)) { // If j is among list of hidden group
- $ishidden = 1;
- } else {
- $ishidden = 0;
- }
- $isexpanded = ! $ishidden;
- //var_dump("isexpanded=".$isexpanded);
- $permsgroupbyentitypluszero = array();
- if (!empty($permsgroupbyentity[0])) {
- $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[0]);
- }
- if (!empty($permsgroupbyentity[$entity])) {
- $permsgroupbyentitypluszero = array_merge($permsgroupbyentitypluszero, $permsgroupbyentity[$entity]);
- }
- //var_dump($permsgroupbyentitypluszero);
- // Break found, it's a new module to catch
- if (isset($obj->module) && ($oldmod <> $obj->module)) {
- $oldmod = $obj->module;
- $j++;
- if (GETPOSTISSET('forbreakperms_'.$obj->module)) {
- $ishidden = GETPOST('forbreakperms_'.$obj->module, 'int');
- } elseif (in_array($j, $cookietohidegrouparray)) { // If j is among list of hidden group
- $ishidden = 1;
- } else {
- $ishidden = 0;
- }
- $isexpanded = ! $ishidden;
- //var_dump('$obj->module='.$obj->module.' isexpanded='.$isexpanded);
- // Break detected, we get objMod
- $objMod = $modules[$obj->module];
- $picto = ($objMod->picto ? $objMod->picto : 'generic');
- // Show break line
- print '<tr class="oddeven trforbreakperms" data-hide-perms="'.$obj->module.'" data-j="'.$j.'">';
- // Picto and label of module
- print '<td class="maxwidthonsmartphone tdoverflowmax150 tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'" title="'.dol_escape_htmltag($objMod->getName()).'">';
- print '<input type="hidden" name="forbreakperms_'.$obj->module.'" id="idforbreakperms_'.$obj->module.'" css="cssforfieldishiden" data-j="'.$j.'" value="'.($isexpanded ? '0' : "1").'">';
- print img_object('', $picto, 'class="pictoobjectwidth paddingright"').' '.$objMod->getName();
- print '<a name="'.$objMod->getName().'"></a>';
- print '</td>';
- // Permission and tick (2 columns)
- if (($caneditperms && empty($objMod->rights_admin_allowed)) || empty($object->admin)) {
- if ($caneditperms) {
- print '<td class="center wraponsmartphone">';
- print '<span class="permtohide_'.$obj->module.'" '.(!$isexpanded ? ' style="display:none"' : '').'>';
- 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>";
- print ' / ';
- 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>";
- print '</span>';
- print '</td>';
- print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">';
- print '</td>';
- } else {
- print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'"> </td>';
- print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'"> </td>';
- }
- } else {
- if ($caneditperms) {
- print '<td class="center wraponsmartphone">';
- /*print '<a class="reposition alink" title="'.dol_escape_htmltag($langs->trans("All")).'" alt="'.dol_escape_htmltag($langs->trans("All")).'" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=addrights&token='.newToken().'&entity='.$entity.'&module='.$obj->module.'&confirm=yes&updatedmodulename='.$obj->module.'">'.$langs->trans("All")."</a>";
- print ' / ';
- print '<a class="reposition alink" title="'.dol_escape_htmltag($langs->trans("None")).'" alt="'.dol_escape_htmltag($langs->trans("None")).'" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delrights&token='.newToken().'&entity='.$entity.'&module='.$obj->module.'&confirm=yes&updatedmodulename='.$obj->module.'">'.$langs->trans("None")."</a>";
- */
- print '</td>';
- print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">';
- print '</td>';
- } else {
- print '<td class="right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'"></td>';
- print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'"> </td>';
- }
- }
- // Description of permission (2 columns)
- print '<td class="tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'"> </td>';
- print '<td class="maxwidthonsmartphone right tdforbreakperms" data-hide-perms="'.dol_escape_htmltag($obj->module).'">';
- print '<div class="switchfolderperms folderperms_'.$obj->module.'"'.($isexpanded ? ' style="display:none;"' : '').'>';
- print img_picto('', 'folder', 'class="marginright"');
- print '</div>';
- print '<div class="switchfolderperms folderopenperms_'.$obj->module.'"'.(!$isexpanded ? ' style="display:none;"' : '').'>';
- print img_picto('', 'folder-open', 'class="marginright"');
- print '</div>';
- print '</td>'; //Add picto + / - when open en closed
- print '</tr>'."\n";
- }
- print '<!-- '.$obj->module.'->'.$obj->perms.($obj->subperms ? '->'.$obj->subperms : '').' -->'."\n";
- print '<tr class="oddeven trtohide_'.$obj->module.'"'.(!$isexpanded ? ' style="display:none"' : '').'>';
- // Picto and label of module
- print '<td class="maxwidthonsmartphone tdoverflowonsmartphone">';
- print '</td>';
- // Permission and tick (2 columns)
- if (!empty($object->admin) && !empty($objMod->rights_admin_allowed)) { // Permission granted because admin
- if ($caneditperms) {
- print '<td class="center">'.img_picto($langs->trans("AdministratorDesc"), 'star').'</td>';
- } else {
- print '<td> </td>';
- }
- print '<td class="center nowrap">';
- if (!$caneditperms) {
- print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
- //print img_picto($langs->trans("Active"), 'tick');
- }
- print '</td>';
- } elseif (in_array($obj->id, $permsuser)) { // Permission granted by user
- if ($caneditperms) {
- print '<td class="center">';
- 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.'">';
- //print img_edit_remove($langs->trans("Remove"));
- print img_picto($langs->trans("Remove"), 'switch_on');
- print '</a></td>';
- } else {
- print '<td> </td>';
- }
- print '<td class="center nowrap">';
- if (!$caneditperms) {
- print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
- //print img_picto($langs->trans("Active"), 'tick');
- }
- print '</td>';
- } elseif (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero)) {
- if (in_array($obj->id, $permsgroupbyentitypluszero)) { // Permission granted by group
- print '<td class="center nowrap">';
- print img_picto($langs->trans("Active"), 'switch_on', '', false, 0, 0, '', 'opacitymedium');
- //print img_picto($langs->trans("Active"), 'tick');
- print '</td>';
- if ($caneditperms) {
- print '<td class="">';
- print $form->textwithtooltip($langs->trans("Inherited"), $langs->trans("PermissionInheritedFromAGroup"));
- print '</td>';
- } else {
- print '<td>c </td>';
- }
- } else {
- // Do not own permission
- if ($caneditperms) {
- print '<td class="center">';
- 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.'">';
- //print img_edit_add($langs->trans("Add"));
- print img_picto($langs->trans("Add"), 'switch_off');
- print '</a></td>';
- } else {
- print '<td>';
- print ' ';
- print '</td>';
- }
- print '<td> </td>';
- }
- } else {
- // Do not own permission
- if ($caneditperms) {
- print '<td class="center">';
- 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.'">';
- //print img_edit_add($langs->trans("Add"));
- print img_picto($langs->trans("Add"), 'switch_off');
- print '</a></td>';
- } else {
- print '<td>aa';
- print img_picto($langs->trans("Disabled"), 'switch_off', '', false, 0, 0, '', 'opacitymedium');
- print '</td>';
- }
- print '<td class="center">';
- print '</td>';
- }
- // Description of permission (2 columns)
- $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)));
- if (!$user->admin) {
- print '<td colspan="2">';
- } else {
- print '<td>';
- }
- print $permlabel;
- if (getDolGlobalString('MAIN_USE_ADVANCED_PERMS')) {
- if (preg_match('/_advance$/', $obj->perms)) {
- print ' <span class="opacitymedium">('.$langs->trans("AdvancedModeOnly").')</span>';
- }
- }
- // Special warning case for the permission "Allow to modify other users password"
- if ($obj->module == 'user' && $obj->perms == 'user' && $obj->subperms == 'password') {
- if ((!empty($object->admin) && !empty($objMod->rights_admin_allowed)) ||
- in_array($obj->id, $permsuser) /* if edited user owns this permissions */ ||
- (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero) && in_array($obj->id, $permsgroupbyentitypluszero))) {
- print ' '.img_warning($langs->trans("AllowPasswordResetBySendingANewPassByEmail"));
- }
- }
- // Special warning case for the permission "Create/modify other users, groups and permissions"
- if ($obj->module == 'user' && $obj->perms == 'user' && ($obj->subperms == 'creer' || $obj->subperms == 'create')) {
- if ((!empty($object->admin) && !empty($objMod->rights_admin_allowed)) ||
- in_array($obj->id, $permsuser) /* if edited user owns this permissions */ ||
- (isset($permsgroupbyentitypluszero) && is_array($permsgroupbyentitypluszero) && in_array($obj->id, $permsgroupbyentitypluszero))) {
- print ' '.img_warning($langs->trans("AllowAnyPrivileges"));
- }
- }
- print '</td>';
- // Permission id
- if ($user->admin) {
- print '<td class="right">';
- $htmltext = $langs->trans("ID").': '.$obj->id;
- $htmltext .= '<br>'.$langs->trans("Permission").': user->rights->'.$obj->module.'->'.$obj->perms.($obj->subperms ? '->'.$obj->subperms : '');
- print $form->textwithpicto('', $htmltext);
- //print '<span class="opacitymedium">'.$obj->id.'</span>';
- print '</td>';
- }
- print '</tr>'."\n";
- $i++;
- }
- } else {
- dol_print_error($db);
- }
- print '</table>';
- print '</div>';
- print '<script>';
- print '$(".tdforbreakperms:not(.alink)").on("click", function(){
- console.log("Click on tdforbreakperms");
- moduletohide = $(this).data("hide-perms");
- j = $(this).data("j");
- if ($("#idforbreakperms_"+moduletohide).val() == 1) {
- console.log("idforbreakperms_"+moduletohide+" has value hidden=1");
- $(".trtohide_"+moduletohide).show();
- $(".permtoshow_"+moduletohide).hide();
- $(".permtohide_"+moduletohide).show();
- $(".folderperms_"+moduletohide).hide();
- $(".folderopenperms_"+moduletohide).show();
- $("#idforbreakperms_"+moduletohide).val("0");
- } else {
- console.log("idforbreakperms_"+moduletohide+" has value hidden=0");
- $(".trtohide_"+moduletohide).hide();
- $(".folderopenperms_"+moduletohide).hide();
- $(".folderperms_"+moduletohide).show();
- $(".permtoshow_"+moduletohide).show();
- $(".permtohide_"+moduletohide).hide();
- $("#idforbreakperms_"+moduletohide).val("1");
- }
- // Now rebuild the value for cookie
- var hideuserperm="";
- $(".trforbreakperms").each(function(index) {
- //console.log( index + ": " + $( this ).data("j") + " " + $( this ).data("hide-perms") + " " + $("input[data-j="+(index+1)+"]").val());
- if ($("input[data-j="+(index+1)+"]").val() == 1) {
- hideuserperm=hideuserperm+","+(index+1);
- }
- });
- // set cookie by js
- date = new Date(); date.setTime(date.getTime()+(30*86400000));
- if (hideuserperm) {
- console.log("set cookie DOLUSER_PERMS_HIDE_GRP="+hideuserperm);
- document.cookie = "DOLUSER_PERMS_HIDE_GRP=" + hideuserperm + "; expires=" + date.toGMTString() + "; path=/ ";
- } else {
- console.log("delete cookie DOLUSER_PERMS_HIDE_GRP");
- document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
- }
- });';
- print "\n";
- // Button expand / collapse all
- print '$(".showallperms").on("click", function(){
- console.log("Click on showallperms");
- console.log("delete cookie DOLUSER_PERMS_HIDE_GRP from showallperms click");
- document.cookie = "DOLUSER_PERMS_HIDE_GRP=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/ ";
- $(".tdforbreakperms").each( function(){
- moduletohide = $(this).data("hide-perms");
- //console.log(moduletohide);
- if ($("#idforbreakperms_"+moduletohide).val() != 0) {
- $(this).trigger("click"); // emulate the click, so the cooki will be resaved
- }
- })
- });
- $(".hideallperms").on("click", function(){
- console.log("Click on hideallperms");
- $(".tdforbreakperms").each( function(){
- moduletohide = $(this).data("hide-perms");
- //console.log(moduletohide);
- if ($("#idforbreakperms_"+moduletohide).val() != 1) {
- $(this).trigger("click"); // emulate the click, so the cooki will be resaved
- }
- })
- });';
- print "\n";
- print '</script>';
- print '<style>';
- print '.switchfolderperms{
- cursor: pointer;
- }';
- print '</style>';
- $parameters = array();
- $reshook = $hookmanager->executeHooks('insertExtraFooter', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- }
- print dol_get_fiche_end();
- // End of page
- llxFooter();
- $db->close();
|