Skip to content
Snippets Groups Projects
Commit 63b3c6f4 authored by David Surville's avatar David Surville
Browse files

Ajout de l'attribut "unicaenRefProfil" et suppression des attributs...

Ajout de l'attribut "unicaenRefProfil" et suppression des attributs "ucbnOrganisme et "unicaenMonEtupass"
parent 779a53ba
No related branches found
No related tags found
No related merge requests found
......@@ -65,3 +65,24 @@ et "supannEtuTypeDiplome"
-------------------
- Ajout de l'attribut "unicaenMailPrincipal"
3.1.13 (20/05/2021)
-------------------
- [Fix] L'attribut supannEmpCorps peut contenir des caractères spéciaux : -/
3.1.14 (02/06/2021)
-------------------
- [Fix] Prise en compte d'un diplôme inconnu ({INCONNU}) dans l'attribut supannEtuInscription
3.1.16 (29/11/2021)
-------------------
- Ajout de l'attribut "schacPersonnalUniqueCode" et de sa classe d'objet "schacLinkageIdentifiers"
3.1.17 (21/02/2022)
-------------------
- Ajout de l'attribut "unicaenRefProfil"
- Suppression des attributs "ucbnOrganisme" et "unicaenMonEtupass"
\ No newline at end of file
......@@ -141,7 +141,6 @@ class People extends Entity
'ucbnCodeEtape',
'ucbnEtuComplementInscription',
'ucbnFonctionStructurelle',
'ucbnOrganisme',
'ucbnPrivateAddress',
'ucbnPrivateAddressBis',
'ucbnSecteurDisciplinaire',
......@@ -161,8 +160,8 @@ class People extends Entity
'uidNumber',
'unicaenLeocarteCSN',
'unicaenMailPrincipal',
'unicaenMonEtupass',
'unicaenRefId',
'unicaenRefProfil',
'unicaenSecuriteCompte',
'unicaenServiceEtat',
'unicaenTermsOfUse',
......@@ -1646,6 +1645,27 @@ class People extends Entity
return $this;
}
/**
* Attribut Ldap "unicaenRefProfil"
*
* @param array|string|null $value
* @param bool $append
* @return self
* @throws Exception
* @throws LdapException
*/
public function setUnicaenRefProfil($value = null, $append = false)
{
$value = $this->preFormat($value);
$value = array_filter($value, function($v) {
return preg_match('/^[\w]+$/i', $v);
});
$this->appendOrNot('unicaenRefProfil', $value, $append);
return $this;
}
/**
* Attribut Ldap "unicaenServiceEtat"
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment