mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSldapObject : Added registerOtherValue() method
This commit is contained in:
parent
a4ae5741e0
commit
a4a6da54d9
1 changed files with 12 additions and 0 deletions
|
@ -1057,6 +1057,18 @@ class LSldapObject {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ajoute une valeur dans le tableau $this -> other_values
|
||||||
|
*
|
||||||
|
* @param[in] $name string Le nom de la valeur
|
||||||
|
* @param[in] $value mixed La valeur
|
||||||
|
*
|
||||||
|
* @retval void
|
||||||
|
**/
|
||||||
|
function registerOtherValue($name,$value) {
|
||||||
|
$this -> other_values[$name]=$value;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retourn un tableau pour un select d'un objet du même type
|
* Retourn un tableau pour un select d'un objet du même type
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue