mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSformElement :: postaladdress : Added map_url_pattern_format parameter
This commit is contained in:
parent
fc2dc85bc7
commit
47e2c56907
1 changed files with 6 additions and 0 deletions
|
@ -43,6 +43,12 @@ class LSformElement_postaladdress extends LSformElement_textarea {
|
||||||
$return = parent :: getDisplay();
|
$return = parent :: getDisplay();
|
||||||
if ($this -> isFreeze()) {
|
if ($this -> isFreeze()) {
|
||||||
if (isset($this -> params['html_options']['map_url_format']) && !empty($this->values)) {
|
if (isset($this -> params['html_options']['map_url_format']) && !empty($this->values)) {
|
||||||
|
if (isset($this -> params['html_options']['map_url_pattern_format'])) {
|
||||||
|
$pattern=$this -> attr_html -> attribute -> ldapObject -> getFData($this -> params['html_options']['map_url_pattern_format']);
|
||||||
|
$pattern=str_replace("\n"," ",$pattern);
|
||||||
|
$pattern=urlencode($pattern);
|
||||||
|
$this -> attr_html -> attribute -> ldapObject -> registerOtherValue('pattern',$pattern);
|
||||||
|
}
|
||||||
LSsession :: addJSconfigParam('LSformElement_postaladdress_'.$this -> name, array (
|
LSsession :: addJSconfigParam('LSformElement_postaladdress_'.$this -> name, array (
|
||||||
'map_url' => $this -> attr_html -> attribute -> ldapObject -> getFData($this -> params['html_options']['map_url_format'])
|
'map_url' => $this -> attr_html -> attribute -> ldapObject -> getFData($this -> params['html_options']['map_url_format'])
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue