2011-04-11 11:23:24 +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_textarea');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Element postaladdress d'un formulaire pour LdapSaisie
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
class LSformElement_postaladdress extends LSformElement_textarea {
|
|
|
|
|
|
|
|
var $fieldTemplateExtraClass = 'LSformElement_postaladdress';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retourne les infos d'affichage de l'élément
|
|
|
|
*
|
|
|
|
* Cette méthode retourne les informations d'affichage de l'élement
|
|
|
|
*
|
|
|
|
* @retval array
|
|
|
|
*/
|
2019-03-12 11:42:53 +01:00
|
|
|
public function getDisplay(){
|
2011-04-11 11:23:24 +02:00
|
|
|
$return = parent :: getDisplay();
|
|
|
|
if ($this -> isFreeze()) {
|
2017-06-15 18:44:51 +02:00
|
|
|
if (!empty($this->values)) {
|
2019-03-11 22:21:25 +01:00
|
|
|
$map_url_format = $this -> getParam('html_options.map_url_format', 'http://nominatim.openstreetmap.org/search.php?q=%{pattern}', 'string');
|
|
|
|
$map_url_pattern_generate_function = $this -> getParam('html_options.map_url_pattern_generate_function');
|
|
|
|
$map_url_pattern_format = $this -> getParam('html_options.map_url_pattern_format');
|
|
|
|
if ($map_url_pattern_generate_function) {
|
|
|
|
if (is_callable($map_url_pattern_generate_function)) {
|
|
|
|
$this -> attr_html -> attribute -> ldapObject -> registerOtherValue('pattern', call_user_func($map_url_pattern_generate_function, $this));
|
2017-06-15 18:44:51 +02:00
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:21:25 +01:00
|
|
|
LSerror::addErrorCode('LSformElement_postaladdress_01', $map_url_pattern_generate_function);
|
2017-06-15 18:44:51 +02:00
|
|
|
}
|
2011-04-14 14:55:47 +02:00
|
|
|
}
|
2019-03-11 22:21:25 +01:00
|
|
|
elseif ($map_url_pattern_format) {
|
|
|
|
$pattern = $this -> attr_html -> attribute -> ldapObject -> getFData($map_url_pattern_format);
|
|
|
|
$pattern = str_replace("\n"," ",$pattern);
|
|
|
|
$pattern = urlencode($pattern);
|
|
|
|
$this -> attr_html -> attribute -> ldapObject -> registerOtherValue('pattern', $pattern);
|
2017-06-15 18:44:51 +02:00
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:21:25 +01:00
|
|
|
$this -> attr_html -> attribute -> ldapObject -> registerOtherValue('pattern', LSformElement_postaladdress__generate_pattern($this));
|
2017-06-15 18:44:51 +02:00
|
|
|
}
|
2011-04-11 11:23:24 +02:00
|
|
|
LSsession :: addJSconfigParam('LSformElement_postaladdress_'.$this -> name, array (
|
2017-06-15 18:44:51 +02:00
|
|
|
'map_url' => $this -> attr_html -> attribute -> ldapObject -> getFData($map_url_format)
|
2011-04-11 11:23:24 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
LSsession :: addHelpInfos(
|
|
|
|
'LSformElement_postaladdress',
|
|
|
|
array(
|
|
|
|
'viewOnMap' => _('View on map')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
LSsession :: addJSscript('LSformElement_postaladdress.js');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
2019-03-11 22:42:20 +01:00
|
|
|
|
2011-04-11 11:23:24 +02:00
|
|
|
}
|
|
|
|
|
2017-06-15 18:44:51 +02:00
|
|
|
function LSformElement_postaladdress__generate_pattern($LSformElement) {
|
|
|
|
return str_replace("\n"," ",$LSformElement->attr_html->attribute->getDisplayValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
LSerror :: defineError('LSformElement_postaladdress_01',
|
|
|
|
_("LSformElement_postaladdress : Map URL pattern generate function is not callabled (%{function}).")
|
|
|
|
);
|
2019-03-11 22:42:20 +01:00
|
|
|
|