31require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
32if (isModEnabled(
'ldap')) {
33 require_once DOL_DOCUMENT_ROOT.
"/core/class/ldap.class.php";
45 public $element =
'usergroup';
50 public $table_element =
'usergroup';
56 public $ismultientitymanaged = 1;
61 public $picto =
'group';
86 public $usergroup_entity;
110 public $members = array();
117 private $_tab_loaded = array();
122 public $all_permissions_are_loaded;
126 public $fields = array(
127 'rowid'=>array(
'type'=>
'integer',
'label'=>
'TechnicalID',
'enabled'=>1,
'visible'=>-2,
'notnull'=>1,
'index'=>1,
'position'=>1,
'comment'=>
'Id'),
128 'entity' => array(
'type'=>
'integer',
'label'=>
'Entity',
'enabled'=>1,
'visible'=>0,
'notnull'=> 1,
'default'=>1,
'index'=>1,
'position'=>5),
129 'nom'=>array(
'type'=>
'varchar(180)',
'label'=>
'Name',
'enabled'=>1,
'visible'=>1,
'notnull'=>1,
'showoncombobox'=>1,
'index'=>1,
'position'=>10,
'searchall'=>1,
'comment'=>
'Group name'),
130 'note' => array(
'type'=>
'html',
'label'=>
'Description',
'enabled'=>1,
'visible'=>1,
'position'=>20,
'notnull'=>-1,
'searchall'=>1),
131 'datec' => array(
'type'=>
'datetime',
'label'=>
'DateCreation',
'enabled'=>1,
'visible'=>-2,
'position'=>50,
'notnull'=>1,),
132 'tms' => array(
'type'=>
'timestamp',
'label'=>
'DateModification',
'enabled'=>1,
'visible'=>-2,
'position'=>60,
'notnull'=>1,),
133 'model_pdf' =>array(
'type'=>
'varchar(255)',
'label'=>
'ModelPDF',
'enabled'=>1,
'visible'=>0,
'position'=>100),
139 public $fk_element =
'fk_usergroup';
144 protected $childtables = array();
149 protected $childtablesoncascade = array(
'usergroup_rights',
'usergroup_user');
160 $this->nb_rights = 0;
172 public function fetch($id = 0, $groupname =
'', $load_members =
false)
176 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
177 if (!empty($groupname)) {
178 $result = $this->
fetchCommon(0,
'',
' AND nom = \''.$this->db->escape($groupname).
'\'');
183 $this->
name = $this->nom;
192 $this->error = $this->db->lasterror();
211 $sql =
"SELECT g.rowid, ug.entity as usergroup_entity";
212 $sql .=
" FROM ".$this->db->prefix().
"usergroup as g,";
213 $sql .=
" ".$this->db->prefix().
"usergroup_user as ug";
214 $sql .=
" WHERE ug.fk_usergroup = g.rowid";
215 $sql .=
" AND ug.fk_user = ".((int) $userid);
216 if (isModEnabled(
'multicompany') && $conf->entity == 1 && $user->admin && !$user->entity) {
217 $sql .=
" AND g.entity IS NOT NULL";
219 $sql .=
" AND g.entity IN (0,".$conf->entity.
")";
221 $sql .=
" ORDER BY g.nom";
223 dol_syslog(get_class($this).
"::listGroupsForUser", LOG_DEBUG);
224 $result = $this->db->query($sql);
226 while ($obj = $this->db->fetch_object($result)) {
227 if (!array_key_exists($obj->rowid, $ret)) {
229 $newgroup->fetch($obj->rowid,
'', $load_members);
230 $ret[$obj->rowid] = $newgroup;
233 if (!is_array($ret[$obj->rowid]->usergroup_entity)) {
234 $ret[$obj->rowid]->usergroup_entity = array();
236 $ret[$obj->rowid]->usergroup_entity[] = $obj->usergroup_entity;
239 $this->db->free($result);
243 $this->error = $this->db->lasterror();
261 $sql =
"SELECT u.rowid, u.login, u.lastname, u.firstname, u.photo, u.fk_soc, u.entity, u.employee, u.email, u.statut as status";
262 if (!empty($this->
id)) {
263 $sql .=
", ug.entity as usergroup_entity";
265 $sql .=
" FROM ".$this->db->prefix().
"user as u";
266 if (!empty($this->
id)) {
267 $sql .=
", ".$this->db->prefix().
"usergroup_user as ug";
269 $sql .=
" WHERE 1 = 1";
270 if (!empty($this->
id)) {
271 $sql .=
" AND ug.fk_user = u.rowid";
273 if (!empty($this->
id)) {
274 $sql .=
" AND ug.fk_usergroup = ".((int) $this->
id);
276 if (isModEnabled(
'multicompany') && $conf->entity == 1 && $user->admin && !$user->entity) {
277 $sql .=
" AND u.entity IS NOT NULL";
279 $sql .=
" AND u.entity IN (0,".$conf->entity.
")";
281 if (!empty($excludefilter)) {
282 $sql .=
' AND ('.$excludefilter.
')';
285 dol_syslog(get_class($this).
"::listUsersForGroup", LOG_DEBUG);
286 $resql = $this->db->query($sql);
289 while ($obj = $this->db->fetch_object($resql)) {
290 if (!array_key_exists($obj->rowid, $ret)) {
292 $newuser =
new User($this->db);
294 $newuser->id = $obj->rowid;
295 $newuser->login = $obj->login;
296 $newuser->photo = $obj->photo;
297 $newuser->lastname = $obj->lastname;
298 $newuser->firstname = $obj->firstname;
299 $newuser->email = $obj->email;
300 $newuser->socid = $obj->fk_soc;
301 $newuser->entity = $obj->entity;
302 $newuser->employee = $obj->employee;
303 $newuser->status = $obj->status;
305 $ret[$obj->rowid] = $newuser;
307 $ret[$obj->rowid] = $obj->rowid;
310 if ($mode != 1 && !empty($obj->usergroup_entity)) {
311 if (!is_array($ret[$obj->rowid]->usergroup_entity)) {
312 $ret[$obj->rowid]->usergroup_entity = array();
314 $ret[$obj->rowid]->usergroup_entity[] = $obj->usergroup_entity;
318 $this->db->free($resql);
322 $this->error = $this->db->lasterror();
336 public function addrights($rid, $allmodule =
'', $allperms =
'', $entity = 0)
338 global $conf, $user, $langs;
340 $entity = (!empty($entity) ? $entity : $conf->entity);
342 dol_syslog(get_class($this).
"::addrights $rid, $allmodule, $allperms, $entity");
349 $module = $perms = $subperms =
'';
353 $sql =
"SELECT module, perms, subperms";
354 $sql .=
" FROM ".$this->db->prefix().
"rights_def";
355 $sql .=
" WHERE id = ".((int) $rid);
356 $sql .=
" AND entity = ".((int) $entity);
358 $result = $this->db->query($sql);
360 $obj = $this->db->fetch_object($result);
362 $module = $obj->module;
363 $perms = $obj->perms;
364 $subperms = $obj->subperms;
372 $whereforadd =
"id=".((int) $rid);
375 $whereforadd .=
" OR (module='".$this->db->escape($module).
"' AND perms='".$this->db->escape($perms).
"' AND (subperms='lire' OR subperms='read'))";
377 $whereforadd .=
" OR (module='".$this->db->escape($module).
"' AND (perms='lire' OR perms='read') AND subperms IS NULL)";
381 if (!empty($allmodule)) {
382 if ($allmodule ==
'allmodules') {
383 $whereforadd =
'allmodules';
385 $whereforadd =
"module='".$this->db->escape($allmodule).
"'";
386 if (!empty($allperms)) {
387 $whereforadd .=
" AND perms='".$this->db->escape($allperms).
"'";
394 if (!empty($whereforadd)) {
397 $sql .=
" FROM ".$this->db->prefix().
"rights_def";
398 $sql .=
" WHERE entity = ".((int) $entity);
399 if (!empty($whereforadd) && $whereforadd !=
'allmodules') {
400 $sql .=
" AND ".$whereforadd;
403 $result = $this->db->query($sql);
405 $num = $this->db->num_rows($result);
408 $obj = $this->db->fetch_object($result);
411 $sql =
"DELETE FROM ".$this->db->prefix().
"usergroup_rights WHERE fk_usergroup = ".((int) $this->
id).
" AND fk_id=".((int) $nid).
" AND entity = ".((int) $entity);
412 if (!$this->db->query($sql)) {
415 $sql =
"INSERT INTO ".$this->db->prefix().
"usergroup_rights (entity, fk_usergroup, fk_id) VALUES (".((int) $entity).
", ".((int) $this->
id).
", ".((int) $nid).
")";
416 if (!$this->db->query($sql)) {
428 $langs->load(
"other");
429 $this->context = array(
'audit'=>$langs->trans(
"PermissionsAdd").($rid ?
' (id='.$rid.
')' :
''));
432 $result = $this->
call_trigger(
'USERGROUP_MODIFY', $user);
441 $this->db->rollback();
459 public function delrights($rid, $allmodule =
'', $allperms =
'', $entity = 0)
461 global $conf, $user, $langs;
466 $entity = (!empty($entity) ? $entity : $conf->entity);
471 $module = $perms = $subperms =
'';
475 $sql =
"SELECT module, perms, subperms";
476 $sql .=
" FROM ".$this->db->prefix().
"rights_def";
477 $sql .=
" WHERE id = ".((int) $rid);
478 $sql .=
" AND entity = ".((int) $entity);
480 $result = $this->db->query($sql);
482 $obj = $this->db->fetch_object($result);
484 $module = $obj->module;
485 $perms = $obj->perms;
486 $subperms = $obj->subperms;
494 $wherefordel =
"id = ".((int) $rid);
496 if ($subperms ==
'lire' || $subperms ==
'read') {
497 $wherefordel .=
" OR (module='".$this->db->escape($module).
"' AND perms='".$this->db->escape($perms).
"' AND subperms IS NOT NULL)";
499 if ($perms ==
'lire' || $perms ==
'read') {
500 $wherefordel .=
" OR (module='".$this->db->escape($module).
"')";
508 if (!empty($allmodule)) {
509 if ($allmodule ==
'allmodules') {
510 $wherefordel =
'allmodules';
512 $wherefordel =
"module='".$this->db->escape($allmodule).
"'";
513 if (!empty($allperms)) {
514 $wherefordel .=
" AND perms='".$this->db->escape($allperms).
"'";
521 if (!empty($wherefordel)) {
524 $sql .=
" FROM ".$this->db->prefix().
"rights_def";
525 $sql .=
" WHERE entity = ".((int) $entity);
526 if (!empty($wherefordel) && $wherefordel !=
'allmodules') {
527 $sql .=
" AND ".$wherefordel;
530 $result = $this->db->query($sql);
532 $num = $this->db->num_rows($result);
537 $obj = $this->db->fetch_object($result);
542 $sql =
"DELETE FROM ".$this->db->prefix().
"usergroup_rights";
543 $sql .=
" WHERE fk_usergroup = $this->id AND fk_id=".((int) $nid);
544 $sql .=
" AND entity = ".((int) $entity);
545 if (!$this->db->query($sql)) {
557 $langs->load(
"other");
558 $this->context = array(
'audit'=>$langs->trans(
"PermissionsDelete").($rid ?
' (id='.$rid.
')' :
''));
561 $result = $this->
call_trigger(
'USERGROUP_MODIFY', $user);
570 $this->db->rollback();
589 if ($moduletag && isset($this->_tab_loaded[$moduletag]) && $this->_tab_loaded[$moduletag]) {
594 if (!empty($this->all_permissions_are_loaded)) {
602 $sql =
"SELECT r.module, r.perms, r.subperms ";
603 $sql .=
" FROM ".$this->db->prefix().
"usergroup_rights as u, ".$this->db->prefix().
"rights_def as r";
604 $sql .=
" WHERE r.id = u.fk_id";
605 $sql .=
" AND r.entity = ".((int) $conf->entity);
606 $sql .=
" AND u.entity = ".((int) $conf->entity);
607 $sql .=
" AND u.fk_usergroup = ".((int) $this->
id);
608 $sql .=
" AND r.perms IS NOT NULL";
610 $sql .=
" AND r.module = '".$this->db->escape($moduletag).
"'";
613 dol_syslog(get_class($this).
'::getrights', LOG_DEBUG);
614 $resql = $this->db->query($sql);
616 $num = $this->db->num_rows($resql);
619 $obj = $this->db->fetch_object($resql);
622 $module = $obj->module;
623 $perms = $obj->perms;
624 $subperms = $obj->subperms;
627 if (!isset($this->rights)) {
630 if (!isset($this->rights->$module) || !is_object($this->rights->$module)) {
631 $this->rights->$module =
new stdClass();
634 if (!isset($this->rights->$module->$perms) || !is_object($this->rights->$module->$perms)) {
635 $this->rights->$module->$perms =
new stdClass();
637 if (empty($this->rights->$module->$perms->$subperms)) {
640 $this->rights->$module->$perms->$subperms = 1;
642 if (empty($this->rights->$module->$perms)) {
645 $this->rights->$module->$perms = 1;
652 $this->db->free($resql);
655 if ($moduletag ==
'') {
658 $this->all_permissions_are_loaded = 1;
661 $this->_tab_loaded[$moduletag] = 1;
673 public function delete(
User $user)
689 if (!empty($this->
name)) {
690 $this->nom = $this->name;
693 if (!isset($this->entity)) {
694 $this->entity = $conf->entity;
710 if (!empty($this->
name)) {
711 $this->nom = $this->name;
727 public function getFullName($langs, $option = 0, $nameorder = -1, $maxlen = 0)
730 $lastname = $this->lastname;
731 $firstname = $this->firstname;
732 if (empty($lastname)) {
733 $lastname = (isset($this->lastname) ? $this->lastname : (isset($this->
name) ? $this->
name : (isset($this->nom) ? $this->nom : (isset($this->societe) ? $this->societe : (isset($this->company) ? $this->company :
'')))));
737 if (!empty($option) && !empty($this->civility_code)) {
738 if ($langs->transnoentitiesnoconv(
"Civility".$this->civility_code) !=
"Civility".$this->civility_code) {
739 $ret .= $langs->transnoentitiesnoconv(
"Civility".$this->civility_code).
' ';
741 $ret .= $this->civility_code.
' ';
773 $langs->load(
'users');
786 global $conf, $langs, $menumanager;
788 $option = $params[
'option'] ??
'';
792 $langs->load(
"users");
793 return [
'optimize' => $langs->trans(
"ShowGroup")];
795 $datas[
'divopen'] =
'<div class="centpercent">';
796 $datas[
'picto'] =
img_picto(
'',
'group').
' <u>'.$langs->trans(
"Group").
'</u><br>';
797 $datas[
'name'] =
'<b>'.$langs->trans(
'Name').
':</b> '.$this->name;
798 $datas[
'description'] =
'<br><b>'.$langs->trans(
"Description").
':</b> '.$this->note;
799 $datas[
'divclose'] =
'</div>';
815 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
817 global $langs, $conf, $db, $hookmanager;
826 'objecttype' => $this->element,
829 $classfortooltip =
'classfortooltip';
832 $classfortooltip =
'classforajaxtooltip';
833 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
839 if ($option ==
'permissions') {
840 $url = DOL_URL_ROOT.
'/user/group/perms.php?id='.$this->id;
842 $url = DOL_URL_ROOT.
'/user/group/card.php?id='.$this->id;
845 if ($option !=
'nolink') {
847 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
848 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
849 $add_save_lastsearch_values = 1;
851 if ($add_save_lastsearch_values) {
852 $url .=
'&save_lastsearch_values=1';
857 if (empty($notooltip)) {
859 $langs->load(
"users");
860 $label = $langs->trans(
"ShowGroup");
861 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1, 1).
'"';
863 $linkclose .= ($label ?
' title="'.dol_escape_htmltag($label, 1).
'"' :
' title="tocomplete"');
864 $linkclose .= $dataparams.
' class="'.$classfortooltip.($morecss ?
' '.$morecss :
'').
'"';
867 $linkstart =
'<a href="'.$url.
'"';
868 $linkstart .= $linkclose.
'>';
871 $result = $linkstart;
873 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'"'), 0, 0, $notooltip ? 0 : 1);
875 if ($withpicto != 2) {
876 $result .= $this->name;
881 $hookmanager->initHooks(array(
'groupdao'));
882 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
883 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
885 $result = $hookmanager->resPrint;
887 $result .= $hookmanager->resPrint;
913 $dn = $conf->global->LDAP_GROUP_DN;
948 $valueofldapfield = array();
949 foreach ($this->members as $key => $val) {
950 $muser =
new User($this->db);
951 $muser->fetch($val->id);
952 $info2 = $muser->_load_ldap_info();
953 $valueofldapfield[] = $muser->_load_ldap_dn($info2);
955 $info[
getDolGlobalString(
'LDAP_GROUP_FIELD_GROUPMEMBERS')] = (!empty($valueofldapfield) ? $valueofldapfield :
'');
973 global $conf, $user, $langs;
977 $this->
ref =
'SPECIMEN';
980 $this->
name =
'DOLIBARR GROUP SPECIMEN';
981 $this->note =
'This is a note';
982 $this->datec = time();
986 $this->members = array(
1002 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
1004 global $conf, $user, $langs;
1006 $langs->load(
"user");
1011 $modele = $conf->global->USERGROUP_ADDON_PDF;
1017 $modelpath =
"core/modules/usergroup/doc/";
1019 return $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
1033 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
1035 $return =
'<div class="box-flex-item box-flex-grow-zero">';
1036 $return .=
'<div class="info-box info-box-sm">';
1037 $return .=
'<span class="info-box-icon bg-infobox-action">';
1039 $return .=
'</span>';
1040 $return .=
'<div class="info-box-content">';
1041 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this,
'getNomUrl') ? $this->
getNomUrl() : $this->ref).
'</span>';
1042 if ($selected >= 0) {
1043 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1045 if (property_exists($this,
'members')) {
1046 $return .=
'<br><span class="info-box-status opacitymedium">'.(empty($this->nb_users) ? 0 : $this->nb_users).
' '.$langs->trans(
'Users').
'</span>';
1048 if (property_exists($this,
'nb_rights')) {
1049 $return .=
'<br><div class="info-box-status margintoponly opacitymedium">'.$langs->trans(
'NbOfPermissions').
' : '.(empty($this->nb_rights) ? 0 : $this->nb_rights).
'</div>';
1051 $return .=
'</div>';
1052 $return .=
'</div>';
1053 $return .=
'</div>';
Parent class of all other business classes (invoices, contracts, proposals, orders,...
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
createCommon(User $user, $notrigger=false)
Create object into database.
deleteCommon(User $user, $notrigger=false, $forcechilddeletion=0)
Delete object in database.
updateCommon(User $user, $notrigger=false)
Update object into database.
fetchCommon($id, $ref=null, $morewhere='', $noextrafields=0)
Load object in memory from the database.
call_trigger($triggerName, $user)
Call trigger based on this instance.
Class to manage user groups.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the user card (with optionaly the picto) Use this->id,this->lastname,...
fetch($id=0, $groupname='', $load_members=false)
Charge un objet group avec toutes ses caracteristiques (except ->members array)
listUsersForGroup($excludefilter='', $mode=0)
Return array of User objects for group this->id (or all if this->id not defined)
getKanbanView($option='', $arraydata=null)
Return clicable link of object (with eventually picto)
_load_ldap_info()
Initialize the info array (array of LDAP values) that will be used to call LDAP functions.
_load_ldap_dn($info, $mode=0)
Retourne chaine DN complete dans l'annuaire LDAP pour l'objet.
LibStatut($status, $mode=0)
Return the label of a given status.
delrights($rid, $allmodule='', $allperms='', $entity=0)
Remove a permission from group.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
listGroupsForUser($userid, $load_members=true)
Return array of groups objects for a particular user.
getFullName($langs, $option=0, $nameorder=-1, $maxlen=0)
Return full name (civility+' '+name+' '+lastname)
addrights($rid, $allmodule='', $allperms='', $entity=0)
Add a permission to a group.
initAsSpecimen()
Initialise an instance with random values.
create($notrigger=0)
Create group into database.
getrights($moduletag='')
Charge dans l'objet group, la liste des permissions auquels le groupe a droit.
getLibStatut($mode=0)
Return the label of the status.
getTooltipContentArray($params)
getTooltipContentArray
__construct($db)
Constructor de la classe.
update($notrigger=0)
Update group into database.
Class to manage Dolibarr users.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dolGetFirstLastname($firstname, $lastname, $nameorder=-1)
Return firstname and lastname in correct order.
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
$conf db name
Only used if Module[ID]Name translation string is not found.