2007-11-15 19:07:24 +01:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
|
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
|
|
*
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
2020-05-08 15:49:55 +02:00
|
|
|
LSsession :: loadLSclass('LSlog_staticLoggerClass');
|
2007-11-15 19:07:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Element d'un formulaire pour LdapSaisie
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette classe gère les éléments des formulaires.
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*/
|
|
|
|
|
2020-05-08 15:49:55 +02:00
|
|
|
class LSformElement extends LSlog_staticLoggerClass {
|
2007-11-15 19:07:24 +01:00
|
|
|
|
|
|
|
var $name;
|
|
|
|
var $label;
|
|
|
|
var $params;
|
|
|
|
var $values = array();
|
|
|
|
var $_required = false;
|
|
|
|
var $_freeze = false;
|
2008-02-26 18:40:05 +01:00
|
|
|
var $attr_html;
|
2008-10-15 19:40:04 +02:00
|
|
|
var $fieldTemplate = 'LSformElement_field.tpl';
|
|
|
|
var $template = 'LSformElement.tpl';
|
2008-10-15 20:29:14 +02:00
|
|
|
var $fetchVariables = array();
|
2007-11-15 19:07:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructeur
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette methode construit l'objet et définis sa configuration de base.
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @param[in] &$form [<b>required</b>] LSform L'objet LSform parent
|
2008-04-25 16:09:27 +02:00
|
|
|
* @param[in] $name [<b>required</b>] string Le nom de référence de l'élément
|
|
|
|
* @param[in] $label [<b>required</b>] string Le label de l'élément
|
|
|
|
* @param[in] $params mixed Paramètres supplémentaires
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @retval true
|
2020-04-29 15:54:21 +02:00
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function __construct(&$form, $name, $label, $params, &$attr_html){
|
2007-11-15 19:07:24 +01:00
|
|
|
$this -> name = $name;
|
2008-02-12 18:59:44 +01:00
|
|
|
$this -> label = $label;
|
|
|
|
$this -> params = $params;
|
2015-04-14 15:10:40 +02:00
|
|
|
$this -> form =& $form;
|
|
|
|
$this -> attr_html =& $attr_html;
|
2008-02-12 18:59:44 +01:00
|
|
|
return true;
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|
|
|
|
|
2020-09-08 17:29:10 +02:00
|
|
|
/**
|
|
|
|
* Allow conversion of LSformElement to string
|
|
|
|
*
|
|
|
|
* @retval string The string representation of the LSformElement
|
|
|
|
*/
|
|
|
|
public function __toString() {
|
|
|
|
return strval($this -> form)." -> <".get_class($this)." ".$this -> name.">";
|
|
|
|
}
|
|
|
|
|
2007-11-15 19:07:24 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Définis la valeur de l'élément
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette méthode définis la valeur de l'élément
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @param[in] [<b>required</b>] string or array La futur valeur de l'élément
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @retval boolean Retourne True
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function setValue($data) {
|
2020-11-30 19:43:52 +01:00
|
|
|
$this -> values = ensureIsArray($data);
|
2008-02-12 18:59:44 +01:00
|
|
|
return true;
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2008-05-14 16:43:23 +02:00
|
|
|
/**
|
2020-04-29 15:54:21 +02:00
|
|
|
* Définis la valeur de l'élément à partir des données
|
2008-05-14 16:43:23 +02:00
|
|
|
* envoyées en POST du formulaire
|
|
|
|
*
|
2020-04-29 15:54:21 +02:00
|
|
|
* Cette méthode définis la valeur de l'élément à partir des données
|
2008-05-14 16:43:23 +02:00
|
|
|
* envoyées en POST du formulaire.
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @param[in] [<b>required</b>] string or array La futur valeur de l'élément
|
|
|
|
*
|
|
|
|
* @retval boolean Retourne True
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function setValueFromPostData($data) {
|
2020-11-30 19:43:52 +01:00
|
|
|
$this -> values = ensureIsArray($data);
|
2008-05-14 16:43:23 +02:00
|
|
|
return true;
|
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
|
2008-07-18 16:02:46 +02:00
|
|
|
/**
|
|
|
|
* Exporte les valeurs de l'élément
|
2020-04-29 15:54:21 +02:00
|
|
|
*
|
2008-07-18 16:02:46 +02:00
|
|
|
* @retval Array Les valeurs de l'élement
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function exportValues(){
|
2008-07-18 16:02:46 +02:00
|
|
|
return $this -> values;
|
|
|
|
}
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Ajoute une valeur à l'élément
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette méthode ajoute une valeur à l'élément
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @param[in] [<b>required</b>] string or array La futur valeur de l'élément
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function addValue($data) {
|
2020-11-30 19:43:52 +01:00
|
|
|
$this -> values = array_merge($this -> values, ensureIsArray($data));
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Test si l'élément est éditable
|
2020-04-29 15:54:21 +02:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette méthode test si l'élément est éditable
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
|
|
|
* @retval boolean
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function isFreeze(){
|
2008-02-12 18:59:44 +01:00
|
|
|
return $this -> _freeze;
|
|
|
|
}
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Freeze l'élément
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Rend l'élément non-editable
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function freeze() {
|
2008-02-12 18:59:44 +01:00
|
|
|
$this -> _freeze = true;
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Défini la propriété required de l'élément.
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* param[in] $isRequired boolean true si l'élément est requis, false sinon
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function setRequired($isRequired=true) {
|
2008-02-12 18:59:44 +01:00
|
|
|
$this -> _required = $isRequired;
|
|
|
|
}
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Test si l'élément est requis
|
2020-04-29 15:54:21 +02:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette méthode test si l'élément est requis
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
|
|
|
* @retval boolean
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function isRequired(){
|
2008-02-12 18:59:44 +01:00
|
|
|
return $this -> _required;
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Retourne le label de l'élement
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function getLabelInfos() {
|
2008-02-12 18:59:44 +01:00
|
|
|
if ($this -> isRequired()) {
|
|
|
|
$return['required']=true;
|
|
|
|
}
|
|
|
|
$return['label'] = $this -> getLabel();
|
2019-03-11 22:21:25 +01:00
|
|
|
$help_infos = array();
|
|
|
|
if ( $this -> getParam('displayAttrName', $this -> attr_html -> attribute -> ldapObject -> getConfig('displayAttrName', false, 'bool'), 'bool') ) {
|
|
|
|
$help_infos[] = _("Attribute")." : ".$this -> name."\n";
|
2010-11-19 18:41:10 +01:00
|
|
|
}
|
2019-03-11 22:21:25 +01:00
|
|
|
if ($this -> getParam('help_info')) {
|
|
|
|
$help_infos[] = __($this -> getParam('help_info'));
|
2008-09-26 20:03:56 +02:00
|
|
|
}
|
2019-03-11 22:21:25 +01:00
|
|
|
if (!empty($help_infos))
|
|
|
|
$return['help_info'] = implode(' - ', $help_infos);
|
2019-03-29 15:49:03 +01:00
|
|
|
$return['help_info_in_view'] = $this -> getParam('help_info_in_view', false, 'bool');
|
2010-11-19 18:41:10 +01:00
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Recupère la valeur de l'élement passée en POST
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette méthode vérifie la présence en POST de la valeur de l'élément et la récupère
|
|
|
|
* pour la mettre dans le tableau passer en paramètre avec en clef le nom de l'élément
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
2020-05-08 20:48:13 +02:00
|
|
|
* @param[in] &$return array Reference of the array for retreived values
|
|
|
|
* @param[in] $onlyIfPresent boolean If true and data of this element is not present in POST data,
|
|
|
|
* just ignore it.
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean true si la valeur est présente en POST, false sinon
|
2008-02-12 18:59:44 +01:00
|
|
|
*/
|
2020-05-08 20:48:13 +02:00
|
|
|
public function getPostData(&$return, $onlyIfPresent=false) {
|
2008-02-12 18:59:44 +01:00
|
|
|
if($this -> isFreeze()) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-06-30 15:55:21 +02:00
|
|
|
$return[$this -> name] = self :: getData($_POST, $this -> name);
|
|
|
|
if (!is_array($return[$this -> name])) {
|
|
|
|
if ($onlyIfPresent) {
|
|
|
|
self :: log_debug($this -> name.": not in POST data => ignore it");
|
|
|
|
unset($return[$this -> name]);
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
2020-06-30 15:55:21 +02:00
|
|
|
else {
|
|
|
|
$return[$this -> name] = array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retreive the value of the element specified by its name ($name)
|
|
|
|
* from POST data (provided as $post).
|
|
|
|
*
|
|
|
|
* @param[in] &$post array Reference of the array for input POST data
|
|
|
|
* @param[in] $name string POST data element name
|
|
|
|
*
|
|
|
|
* @retval mixed Array of POST data value if present, false otherwise
|
|
|
|
*/
|
|
|
|
protected static function getData(&$post, $name) {
|
|
|
|
if (isset($post[$name])) {
|
2020-11-30 19:43:52 +01:00
|
|
|
$return = array();
|
|
|
|
$post[$name] = ensureIsArray($post[$name]);
|
2020-06-30 15:55:21 +02:00
|
|
|
foreach($post[$name] as $key => $val) {
|
2020-09-11 13:34:42 +02:00
|
|
|
if (!is_empty($val)) {
|
2020-06-30 15:55:21 +02:00
|
|
|
$return[$key] = $val;
|
2008-10-15 12:32:51 +02:00
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
2020-06-30 15:55:21 +02:00
|
|
|
return $return;
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
2020-06-30 15:55:21 +02:00
|
|
|
return false;
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Retourne le label de l'élement
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
|
|
|
* Retourne $this -> label, ou $this -> params['label'], ou $this -> name
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval string Le label de l'élément
|
2008-02-12 18:59:44 +01:00
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function getLabel() {
|
2008-02-12 18:59:44 +01:00
|
|
|
if ($this -> label != "") {
|
2009-03-19 18:42:51 +01:00
|
|
|
return __($this -> label);
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
2019-03-11 22:21:25 +01:00
|
|
|
return __($this -> getParam('label', $this -> name));
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-10-16 17:35:20 +02:00
|
|
|
* Le champ est-il a valeur multiple
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
2008-10-16 17:35:20 +02:00
|
|
|
* @retval boolean True si le champ est à valeur multiple, False sinon
|
2008-02-12 18:59:44 +01:00
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function isMultiple() {
|
2019-03-11 22:21:25 +01:00
|
|
|
return $this -> getParam('multiple', false, 'bool');
|
2008-10-15 19:40:04 +02:00
|
|
|
}
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2008-10-15 19:40:04 +02:00
|
|
|
/**
|
|
|
|
* Retournne un template Smarty compilé dans le contexte d'un LSformElement
|
|
|
|
*
|
|
|
|
* @param[in] string $template Le template à retourner
|
|
|
|
* @param[in] array $variables Variables Smarty à assigner avant l'affichage
|
2020-04-29 15:54:21 +02:00
|
|
|
*
|
2008-10-15 19:40:04 +02:00
|
|
|
* @retval string Le HTML compilé du template
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function fetchTemplate($template=NULL,$variables=array()) {
|
2008-10-15 19:40:04 +02:00
|
|
|
if (!$template) {
|
|
|
|
$template = $this -> template;
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
return LSsession :: fetchTemplate(
|
2008-10-15 19:40:04 +02:00
|
|
|
$template,
|
|
|
|
array_merge_recursive(
|
|
|
|
$variables,
|
2008-10-15 20:29:14 +02:00
|
|
|
$this -> fetchVariables,
|
2008-10-15 19:40:04 +02:00
|
|
|
array(
|
|
|
|
'freeze' => $this -> isFreeze(),
|
|
|
|
'multiple'=> $this -> isMultiple(),
|
|
|
|
'value' => '',
|
|
|
|
'values' => $this -> values,
|
|
|
|
'attr_name' => $this -> name,
|
2019-03-11 22:21:25 +01:00
|
|
|
'noValueTxt' => __($this -> getParam('no_value_label', 'No set value', 'string')),
|
2014-11-20 00:31:08 +01:00
|
|
|
'fieldTemplate' => $this -> fieldTemplate,
|
|
|
|
'fieldType' => get_class($this)
|
2008-10-15 19:40:04 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2008-10-15 19:40:04 +02:00
|
|
|
/**
|
2020-09-08 18:42:54 +02:00
|
|
|
* Return HTML code of an empty form field
|
2008-10-15 19:40:04 +02:00
|
|
|
*
|
2020-09-08 18:42:54 +02:00
|
|
|
* @param[in] $value_idx integer|null The value index (optional, default: null == 0)
|
|
|
|
*
|
|
|
|
* @retval string The HTML code of an empty field
|
2008-10-15 19:40:04 +02:00
|
|
|
*/
|
2020-09-08 18:42:54 +02:00
|
|
|
public function getEmptyField($value_idx=null) {
|
|
|
|
return $this -> fetchTemplate(
|
|
|
|
$this -> fieldTemplate,
|
|
|
|
array(
|
|
|
|
'value' => null,
|
|
|
|
'value_idx' => intval($value_idx),
|
|
|
|
)
|
|
|
|
);
|
2008-10-15 19:40:04 +02:00
|
|
|
}
|
2019-03-11 22:21:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a parameter (or default value)
|
|
|
|
*
|
|
|
|
* @param[] $param The parameter
|
|
|
|
* @param[] $default The default value (default : null)
|
|
|
|
* @param[] $cast Cast resulting value in specific type (default : disabled)
|
|
|
|
*
|
|
|
|
* @retval mixed The parameter value or default value if not set
|
|
|
|
**/
|
|
|
|
public function getParam($param, $default=null, $cast=null) {
|
|
|
|
return LSconfig :: get($param, $default, $cast, $this -> params);
|
|
|
|
}
|
2019-03-11 22:42:20 +01:00
|
|
|
|
2020-07-07 12:43:55 +02:00
|
|
|
/**
|
|
|
|
* CLI autocompleter for form element attribute values
|
|
|
|
*
|
|
|
|
* @param[in] &$opts array Reference of array of avalaible autocomplete options
|
|
|
|
* @param[in] $comp_word string The (unquoted) command word to autocomplete
|
|
|
|
* @param[in] $attr_value string The current attribute value in command word to autocomplete
|
|
|
|
* (optional, default: empty string)
|
|
|
|
* @param[in] $multiple_value_delimiter string The multiple value delimiter (optional, default: "|")
|
|
|
|
* @param[in] $quote_char string The quote character detected (optional, default: empty string)
|
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
*/
|
|
|
|
public function autocomplete_attr_values(&$opts, $comp_word, $attr_value="", $multiple_value_delimiter="|", $quote_char='') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CLI autocompleter helper to split form element attribute values
|
|
|
|
*
|
|
|
|
* @param[in] $attr_value string The current attribute value in command word to autocomplete
|
|
|
|
* (optional, default: empty string)
|
|
|
|
* @param[in] $multiple_value_delimiter string The multiple value delimiter (optional, default: "|")
|
|
|
|
* @param[in] &$attr_values Reference of array Reference of array that will contain splited attribute
|
|
|
|
* values without last-one
|
|
|
|
* @param[in] &$last_attr_value Reference of string Reference of array that will contain the last splited attribute
|
|
|
|
* value
|
|
|
|
*
|
|
|
|
* @retval boolean True on success, False otherwise
|
|
|
|
*/
|
|
|
|
protected function split_autocomplete_attr_values($attr_value="", $multiple_value_delimiter="|", &$attr_values, &$last_attr_value) {
|
|
|
|
$attr_values = explode($multiple_value_delimiter, $attr_value);
|
|
|
|
if (count($attr_values) > 1 && !$this -> getParam('multiple', false, 'bool')) {
|
|
|
|
self :: log_error("The attribute ".$this -> name." is not multivalued.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self :: log_debug("split_autocomplete_attr_values('$attr_value', '$multiple_value_delimiter'): values = '".implode("', '", $attr_values)."'");
|
|
|
|
$last_attr_value = array_pop($attr_values);
|
|
|
|
self :: log_debug("split_autocomplete_attr_values('$attr_value', '$multiple_value_delimiter'): last value = '$last_attr_value'");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CLI autocompleter helper to format and add form element attribute value option
|
|
|
|
*
|
|
|
|
* @param[in] &$opts array Reference of array of avalaible autocomplete options
|
|
|
|
* @param[in] &$attr_values Reference of array Reference of array of splited attribute values without last-one
|
|
|
|
* @param[in] $value string The attribute value to add as option
|
|
|
|
* @param[in] $multiple_value_delimiter string The multiple value delimiter (optional, default: "|")
|
|
|
|
* @param[in] $quote_char string The quote character (optional, default: empty string)
|
|
|
|
*
|
|
|
|
* @retval boolean True on success, False otherwise
|
|
|
|
*/
|
|
|
|
protected function add_autocomplete_attr_value_opts(&$opts, &$attr_values, $value, $multiple_value_delimiter='|', $quote_char='') {
|
|
|
|
if (in_array($value, $attr_values)) {
|
|
|
|
self :: log_debug("LSformElement :: autocomplete_opts(): '$value' already one of selected value, ignore it");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$opt = $this -> name . "=" .implode($multiple_value_delimiter, array_merge($attr_values, array($value)));
|
|
|
|
self :: log_debug("LSformElement :: add_autocomplete_attr_value_opts(): option=$opt");
|
|
|
|
if ($quote_char)
|
|
|
|
$opt = LScli :: quote_word($opt, $quote_char);
|
|
|
|
if (!in_array($opt, $opts))
|
|
|
|
$opts[] = $opt;
|
|
|
|
}
|
|
|
|
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|