2012-08-10 12:32:54 +02: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.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
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';
|
2014-11-20 00:44:41 +01:00
|
|
|
|
|
|
|
var $supannNomenclatureTable = null;
|
2012-08-10 12:32:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retourne les infos d'affichage de l'élément
|
|
|
|
*
|
|
|
|
* Cette méthode retourne les informations d'affichage de l'élement
|
|
|
|
*
|
|
|
|
* @retval array
|
|
|
|
*/
|
|
|
|
function getDisplay(){
|
|
|
|
$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
|
|
|
}
|
|
|
|
$return['html'] = $this -> fetchTemplate(NULL,array('parseValues' => $parseValues));
|
2014-11-25 00:07:21 +01:00
|
|
|
LSsession :: addCssFile('LSformElement_supannLabeledValue.css');
|
|
|
|
if (!$this -> isFreeze()) {
|
|
|
|
LSsession :: addJSconfigParam(
|
|
|
|
$this -> name,
|
|
|
|
array(
|
|
|
|
'searchBtn' => _('Modify'),
|
|
|
|
'noValueLabel' => _('No set value'),
|
|
|
|
'noResultLabel' => _('No result'),
|
|
|
|
'components' => $this->components
|
|
|
|
)
|
|
|
|
);
|
|
|
|
LSsession :: addJSscript('LSformElement_supannLabeledValue_field_value.js');
|
|
|
|
LSsession :: addJSscript('LSformElement_supannLabeledValue_field.js');
|
|
|
|
LSsession :: addJSscript('LSformElement_supannLabeledValue.js');
|
|
|
|
}
|
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
|
|
|
**/
|
2014-11-20 00:44:41 +01:00
|
|
|
function parseValue($value) {
|
2014-11-25 00:07:21 +01:00
|
|
|
$retval=array(
|
|
|
|
'value' => $value,
|
|
|
|
);
|
|
|
|
$pv=supannParseLabeledValue($value);
|
|
|
|
if ($pv) {
|
|
|
|
$retval['label'] = $pv['label'];
|
|
|
|
$retval['translated'] = supannGetNomenclatureLabel($this -> supannNomenclatureTable,$pv['label'],$pv['value']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$retval['label'] = 'no';
|
|
|
|
$retval['translated'] = getFData(__('%s (Unparsable value)'),$value);
|
|
|
|
}
|
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
**/
|
|
|
|
public static function ajax_searchPossibleValues(&$data) {
|
|
|
|
if ((isset($_REQUEST['attribute'])) && (isset($_REQUEST['objecttype'])) && (isset($_REQUEST['pattern'])) && (isset($_REQUEST['idform'])) ) {
|
|
|
|
if (LSsession ::loadLSobject($_REQUEST['objecttype'])) {
|
|
|
|
$object = new $_REQUEST['objecttype']();
|
|
|
|
$form = $object -> getForm($_REQUEST['idform']);
|
|
|
|
$field=$form -> getElement($_REQUEST['attribute']);
|
|
|
|
$data['possibleValues'] = $field -> searchPossibleValues($_REQUEST['pattern']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function searchPossibleValues($pattern) {
|
|
|
|
$pattern=strtolower($pattern);
|
|
|
|
$retval=array();
|
|
|
|
$table=supannGetNomenclatureTable($this -> supannNomenclatureTable);
|
|
|
|
foreach($table as $label => $values) {
|
|
|
|
foreach($values as $v => $txt) {
|
|
|
|
if (strpos(strtolower($txt),$pattern)!==false) {
|
|
|
|
$retval[]=array(
|
|
|
|
'label' => $label,
|
|
|
|
'value' => "{".$label."}".$v,
|
|
|
|
'translated' => $txt
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $retval;
|
2012-08-10 12:32:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|