mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-01 00:03:18 +01:00
LSldapObject : Added getDisplayFData() method
This commit is contained in:
parent
8f5215b74a
commit
a6e28f8063
1 changed files with 17 additions and 0 deletions
|
@ -172,6 +172,23 @@ class LSldapObject {
|
|||
$format=getFData($format,$this,'getValue');
|
||||
return $format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Chaine formatee
|
||||
*
|
||||
* Cette fonction retourne la valeur d'une chaine formatée en prennant les valeurs
|
||||
* d'affichage de l'objet.
|
||||
*
|
||||
* @author Benjamin Renard <brenard@easter-eggs.com>
|
||||
*
|
||||
* @param[in] $format string Format de la chaine
|
||||
*
|
||||
* @retval string Valeur d'une chaine formatee
|
||||
*/
|
||||
function getDisplayFData($format) {
|
||||
$format=getFData($format,$this,'getDisplayValue');
|
||||
return $format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construit un formulaire de l'objet
|
||||
|
|
Loading…
Reference in a new issue