mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 00:09:06 +01:00
LSattr_html_select_list :: getLSobjectPossibleValues() : make really static
This commit is contained in:
parent
e7b4bc085a
commit
b529eee34f
1 changed files with 3 additions and 5 deletions
|
@ -238,17 +238,15 @@ class LSattr_html_select_list extends LSattr_html{
|
|||
* Retourne un tableau des valeurs possibles d'un type d'objet
|
||||
*
|
||||
* @param[in] $conf OTHER_OBJECT configuration array
|
||||
* @param[in] $options array|false Attribute options (optional)
|
||||
* @param[in] $name Attribute name (optional)
|
||||
* @param[in] $options array|false Attribute options
|
||||
* @param[in] $name Attribute name
|
||||
*
|
||||
* @author Benjamin Renard <brenard@easter-eggs.com>
|
||||
*
|
||||
* @retval array Tableau associatif des valeurs possible de la liste avec en clé
|
||||
* la valeur des balises option et en valeur ce qui sera affiché.
|
||||
*/
|
||||
protected static function getLSobjectPossibleValues($conf,$options=false,$name=false) {
|
||||
if (!$options) $options=$this -> config['html_options'];
|
||||
if (!$name) $name=$this -> name;
|
||||
protected static function getLSobjectPossibleValues($conf, $options, $name) {
|
||||
$retInfos = array();
|
||||
|
||||
if ((!isset($conf['object_type'])) || ((!isset($conf['value_attribute'])) && (!isset($conf['values_attribute'])))) {
|
||||
|
|
Loading…
Reference in a new issue