2012-08-10 12:32:54 +02:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
2021-04-13 18:04:19 +02:00
|
|
|
* https://ldapsaisie.org
|
2012-08-10 12:32:54 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
LSsession :: loadLSclass('LSformElement');
|
|
|
|
LSsession :: loadLSaddon('supann');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Element supannLabeledValue d'un formulaire pour LdapSaisie
|
|
|
|
*
|
|
|
|
* Cette classe définis les éléments supannLabeledValue des formulaires.
|
|
|
|
* Elle étant la classe basic LSformElement.
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
class LSformElement_supannLabeledValue extends LSformElement {
|
|
|
|
|
|
|
|
var $template = 'LSformElement_supannLabeledValue.tpl';
|
|
|
|
var $fieldTemplate = 'LSformElement_supannLabeledValue_field.tpl';
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2014-11-20 00:44:41 +01:00
|
|
|
var $supannNomenclatureTable = null;
|
2021-06-09 15:48:46 +02:00
|
|
|
var $supannLabelNomenclatureTable = null;
|
|
|
|
|
|
|
|
// HTML field type: text or textarea (only for field without nomenclature table)
|
|
|
|
var $valueFieldType = 'text';
|
2012-08-10 12:32:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retourne les infos d'affichage de l'élément
|
2020-04-29 15:54:21 +02:00
|
|
|
*
|
2012-08-10 12:32:54 +02:00
|
|
|
* Cette méthode retourne les informations d'affichage de l'élement
|
|
|
|
*
|
|
|
|
* @retval array
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function getDisplay(){
|
2012-08-10 12:32:54 +02:00
|
|
|
$return = $this -> getLabelInfos();
|
|
|
|
|
|
|
|
$parseValues=array();
|
|
|
|
foreach($this -> values as $val) {
|
2014-11-20 00:44:41 +01:00
|
|
|
$parseValues[]=$this -> parseValue($val);
|
2012-08-10 12:32:54 +02:00
|
|
|
}
|
2021-06-09 15:48:46 +02:00
|
|
|
$possibleLabels = (
|
|
|
|
$this -> supannLabelNomenclatureTable?
|
|
|
|
supannGetNomenclaturePossibleValues($this -> supannLabelNomenclatureTable, false):
|
|
|
|
null
|
|
|
|
);
|
|
|
|
$return['html'] = $this -> fetchTemplate(
|
|
|
|
NULL, array(
|
|
|
|
'parseValues' => $parseValues,
|
|
|
|
'nomenclatureTable' => $this -> supannNomenclatureTable,
|
|
|
|
'possibleLabels' => $possibleLabels,
|
|
|
|
'valueFieldType' => $this -> valueFieldType,
|
|
|
|
)
|
|
|
|
);
|
2020-05-28 16:56:36 +02:00
|
|
|
LStemplate :: addCssFile('LSformElement_supannLabeledValue.css');
|
2014-11-25 00:07:21 +01:00
|
|
|
if (!$this -> isFreeze()) {
|
2020-05-28 16:56:36 +02:00
|
|
|
LStemplate :: addJSconfigParam(
|
2014-11-25 00:07:21 +01:00
|
|
|
$this -> name,
|
|
|
|
array(
|
2021-06-09 15:48:46 +02:00
|
|
|
'nomenclatureTable' => boolval($this -> supannNomenclatureTable),
|
2014-11-25 00:07:21 +01:00
|
|
|
'searchBtn' => _('Modify'),
|
|
|
|
'noValueLabel' => _('No set value'),
|
|
|
|
'noResultLabel' => _('No result'),
|
|
|
|
)
|
|
|
|
);
|
2020-05-28 16:56:36 +02:00
|
|
|
LStemplate :: addJSscript('LSformElement_supannLabeledValue_field_value.js');
|
|
|
|
LStemplate :: addJSscript('LSformElement_supannLabeledValue_field.js');
|
|
|
|
LStemplate :: addJSscript('LSformElement_supannLabeledValue.js');
|
2014-11-25 00:07:21 +01:00
|
|
|
}
|
2012-08-10 12:32:54 +02:00
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-11-20 00:44:41 +01:00
|
|
|
* Parse une valeur
|
2012-08-10 12:32:54 +02:00
|
|
|
*
|
|
|
|
* @param[in] $value La valeur
|
|
|
|
*
|
2014-11-20 00:44:41 +01:00
|
|
|
* @retval array Un tableau cle->valeur contenant value, translated et label
|
2012-08-10 12:32:54 +02:00
|
|
|
**/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function parseValue($value) {
|
2021-06-09 15:48:46 +02:00
|
|
|
$retval = array(
|
2014-11-25 00:07:21 +01:00
|
|
|
'value' => $value,
|
|
|
|
);
|
2021-06-09 15:48:46 +02:00
|
|
|
$pv = supannParseLabeledValue($value);
|
2014-11-25 00:07:21 +01:00
|
|
|
if ($pv) {
|
|
|
|
$retval['label'] = $pv['label'];
|
2021-06-09 15:48:46 +02:00
|
|
|
if ($this -> supannLabelNomenclatureTable)
|
|
|
|
$retval['translated_label'] = supannGetNomenclatureLabel($this -> supannLabelNomenclatureTable, null, $pv['label']);
|
|
|
|
if ($this -> supannNomenclatureTable)
|
|
|
|
$retval['translated'] = supannGetNomenclatureLabel($this -> supannNomenclatureTable,$pv['label'],$pv['value']);
|
|
|
|
else
|
|
|
|
$retval['translated'] = $pv['value'];
|
2014-11-25 00:07:21 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$retval['label'] = 'no';
|
2021-06-03 17:17:09 +02:00
|
|
|
$retval['translated'] = getFData(__('%{value} (Unparsable value)'), $value);
|
2014-11-25 00:07:21 +01:00
|
|
|
}
|
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
2021-06-11 14:19:03 +02:00
|
|
|
/**
|
|
|
|
* Recupère la valeur de l'élement passée en POST
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
2021-08-25 18:02:37 +02:00
|
|
|
* @param[in] &$return array Reference of the array for retrieved values
|
2021-06-11 14:19:03 +02:00
|
|
|
* @param[in] $onlyIfPresent boolean If true and data of this element is not present in POST data,
|
|
|
|
* just ignore it.
|
|
|
|
*
|
|
|
|
* @retval boolean true si la valeur est présente en POST, false sinon
|
|
|
|
*/
|
|
|
|
public function getPostData(&$return, $onlyIfPresent=false) {
|
|
|
|
$retval = parent :: getPostData($return, $onlyIfPresent);
|
|
|
|
if (isset($return[$this -> name])) {
|
|
|
|
foreach ($return[$this -> name] as $idx => $value) {
|
|
|
|
$pv = supannParseLabeledValue($value);
|
|
|
|
if ($pv) {
|
|
|
|
if (
|
|
|
|
$this -> supannLabelNomenclatureTable &&
|
|
|
|
!supannValidateNomenclatureValue($this -> supannLabelNomenclatureTable, null, $pv['label'])
|
|
|
|
) {
|
|
|
|
$this -> form -> setElementError(
|
|
|
|
$this -> attr_html,
|
2021-06-11 14:37:19 +02:00
|
|
|
getFData(_('Invalid label: "%{label}"'), $pv['label'])
|
2021-06-11 14:19:03 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
$this -> supannNomenclatureTable &&
|
|
|
|
!supannValidateNomenclatureValue($this -> supannNomenclatureTable, $pv['label'], $pv['value'])
|
|
|
|
) {
|
|
|
|
$this -> form -> setElementError(
|
|
|
|
$this -> attr_html,
|
2021-06-11 14:37:19 +02:00
|
|
|
getFData(_('Invalid value: "%{value}"'), $value)
|
2021-06-11 14:19:03 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this -> form -> setElementError($this -> attr_html, _('Unparsable value'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $retval;
|
|
|
|
}
|
2014-11-25 00:07:21 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This ajax method is used by the searchPossibleValues function of the form element.
|
|
|
|
*
|
|
|
|
* @param[in] $data The address to the array of data witch will be return by the ajax request
|
|
|
|
*
|
2021-06-09 15:48:46 +02:00
|
|
|
* @retval boolean True on success, False otherwise
|
2014-11-25 00:07:21 +01:00
|
|
|
**/
|
|
|
|
public static function ajax_searchPossibleValues(&$data) {
|
2021-06-09 15:48:46 +02:00
|
|
|
// Check all parameters is provided
|
|
|
|
foreach(array('attribute', 'objecttype', 'pattern', 'idform') as $parameter)
|
|
|
|
if (!isset($_REQUEST[$parameter]))
|
|
|
|
return;
|
|
|
|
if (!LSsession ::loadLSobject($_REQUEST['objecttype']))
|
|
|
|
return;
|
|
|
|
$object = new $_REQUEST['objecttype']();
|
|
|
|
$form = $object -> getForm($_REQUEST['idform']);
|
|
|
|
$field = $form -> getElement($_REQUEST['attribute']);
|
|
|
|
$data['possibleValues'] = $field -> searchPossibleValues($_REQUEST['pattern']);
|
|
|
|
return true;
|
2014-11-25 00:07:21 +01:00
|
|
|
}
|
|
|
|
|
2021-06-09 15:48:46 +02:00
|
|
|
/**
|
|
|
|
* Real private method to search possible values from pattern.
|
|
|
|
*
|
|
|
|
* @param[in] $pattern The search pattern
|
|
|
|
*
|
|
|
|
* @retval boolean|array Array of possible values, or False is case of error
|
|
|
|
**/
|
2014-11-25 00:07:21 +01:00
|
|
|
private function searchPossibleValues($pattern) {
|
2021-06-09 15:48:46 +02:00
|
|
|
if (!$this -> supannNomenclatureTable)
|
|
|
|
return false;
|
|
|
|
$pattern=withoutAccents(strtolower($pattern));
|
2014-11-25 00:07:21 +01:00
|
|
|
$retval=array();
|
|
|
|
$table=supannGetNomenclatureTable($this -> supannNomenclatureTable);
|
|
|
|
foreach($table as $label => $values) {
|
|
|
|
foreach($values as $v => $txt) {
|
2021-06-09 15:48:46 +02:00
|
|
|
if (strpos(withoutAccents(strtolower($txt)),$pattern)!==false) {
|
2014-11-25 00:07:21 +01:00
|
|
|
$retval[]=array(
|
|
|
|
'label' => $label,
|
|
|
|
'value' => "{".$label."}".$v,
|
|
|
|
'translated' => $txt
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $retval;
|
2012-08-10 12:32:54 +02:00
|
|
|
}
|
|
|
|
|
2021-06-11 16:36:19 +02:00
|
|
|
/**
|
2021-08-25 18:02:37 +02:00
|
|
|
* Retrieve value as return in API response
|
2021-06-11 16:36:19 +02:00
|
|
|
*
|
|
|
|
* @param[in] $details boolean If true, returned values will contain details if this field type
|
|
|
|
* support it (optional, default: false)
|
|
|
|
*
|
|
|
|
* @retval mixed API value(s) or null/empty array if no value
|
|
|
|
*/
|
|
|
|
public function getApiValue($details=false) {
|
|
|
|
$values = array();
|
|
|
|
foreach(ensureIsArray($this -> values) as $value) {
|
|
|
|
$decodedValue = $this -> parseValue($value);
|
|
|
|
if (is_array($decodedValue)) {
|
|
|
|
$values[] = ($details?$decodedValue:$decodedValue['value']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($this -> isMultiple()) {
|
|
|
|
return $values;
|
|
|
|
}
|
|
|
|
if (!$values)
|
|
|
|
return null;
|
|
|
|
return $values[0];
|
|
|
|
}
|
2012-08-10 12:32:54 +02:00
|
|
|
}
|