Skip to content
Snippets Groups Projects
Commit c026d9ea authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: group ldap test need "uniqueMember" field

parent 556f34d3
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ if ($_GET["action"] == 'setvalue' && $user->admin)
if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_FULLNAME',$_POST["fieldfullname"],'chaine',0,'',$conf->entity)) $error++;
if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_NAME',$_POST["fieldname"],'chaine',0,'',$conf->entity)) $error++;
if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_DESCRIPTION',$_POST["fielddescription"],'chaine',0,'',$conf->entity)) $error++;
if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_USERGROUP',$_POST["fieldusergroup"],'chaine',0,'',$conf->entity)) $error++;
if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_GROUPMEMBERS',$_POST["fieldgroupmembers"],'chaine',0,'',$conf->entity)) $error++;
if ($error)
{
......@@ -164,10 +164,10 @@ print '</tr>';
// User group
$var=!$var;
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldUserGroup").'</td><td>';
print '<input size="25" type="text" name="fieldusergroup" value="'.$conf->global->LDAP_GROUP_FIELD_USERGROUP.'">';
print '</td><td>'.$langs->trans("LDAPFieldUserGroupExample").'</td>';
print '<td align="right"><input type="radio" name="key" value="'.$conf->global->LDAP_GROUP_FIELD_USERGROUP.'"'.($conf->global->LDAP_KEY_GROUPS==$conf->global->LDAP_GROUP_FIELD_USERGROUP?' checked="true"':'')."></td>";
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldGroupMembers").'</td><td>';
print '<input size="25" type="text" name="fieldgroupmembers" value="'.$conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS.'">';
print '</td><td>'.$langs->trans("LDAPFieldGroupMembersExample").'</td>';
print '<td align="right"><input type="radio" name="key" value="'.$conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS.'"'.($conf->global->LDAP_KEY_GROUPS==$conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS?' checked="true"':'')."></td>";
print '</tr>';
......
......@@ -948,8 +948,8 @@ LDAPFieldCountry=Country
LDAPFieldCountryExample=Example : c
LDAPFieldDescription=Description
LDAPFieldDescriptionExample=Example : description
LDAPFieldUserGroup = Group members
LDAPFieldUserGroupExample = Example : uniqueMember
LDAPFieldGroupMembers = Group members
LDAPFieldGroupMembersExample = Example : uniqueMember
LDAPFieldBirthdate=Birthdate
LDAPFieldBirthdateExample=Example :
LDAPFieldCompany=Company
......
......@@ -949,8 +949,8 @@ LDAPFieldCountry = Pays
LDAPFieldCountryExample = Exemple : c
LDAPFieldDescription = Description
LDAPFieldDescriptionExample = Exemple : description
LDAPFieldUserGroup = Membres du groupe
LDAPFieldUserGroupExample = Exemple : uniqueMember
LDAPFieldGroupMembers = Membres du groupe
LDAPFieldGroupMembersExample = Exemple : uniqueMember
LDAPFieldBirthdate = Date de naissance
LDAPFieldBirthdateExample = Exemple :
LDAPFieldCompany = Société
......
......@@ -43,7 +43,7 @@ class UserGroup extends CommonObject
var $entity; // Entity of group
var $nom; // Name of group
var $note; // Note on group
var $user; // Users of group
var $member; // Group member
var $datec; // Creation date of group
var $datem; // Modification date of group
......@@ -562,7 +562,7 @@ class UserGroup extends CommonObject
if ($this->nom && $conf->global->LDAP_GROUP_FIELD_FULLNAME) $info[$conf->global->LDAP_GROUP_FIELD_FULLNAME] = $this->nom;
if ($this->nom && $conf->global->LDAP_GROUP_FIELD_NAME) $info[$conf->global->LDAP_GROUP_FIELD_NAME] = $this->nom;
if ($this->note && $conf->global->LDAP_GROUP_FIELD_DESCRIPTION) $info[$conf->global->LDAP_GROUP_FIELD_DESCRIPTION] = $this->note;
if ($this->user && $conf->global->LDAP_GROUP_FIELD_USERGROUP) $info[$conf->global->LDAP_GROUP_FIELD_USERGROUP] = $this->user;
if ($this->member && $conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS) $info[$conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS] = $this->member;
return $info;
}
......@@ -582,7 +582,7 @@ class UserGroup extends CommonObject
$this->nom='DOLIBARR GROUP SPECIMEN';
$this->note='This is a note';
$this->user=$conf->global->LDAP_KEY_USERS.'=DOLIBARR USER,'.$conf->global->LDAP_USER_DN;
$this->member=$conf->global->LDAP_KEY_USERS.'=DOLIBARR USER,'.$conf->global->LDAP_USER_DN;
$this->datec=time();
$this->datem=time();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment