X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.display_address.php;h=85a9210a1657e0194170f96983e3bae16bb1fc62;hb=7e640aad8f8b36ec7bf09d85d794f82521a3b81e;hp=28c6c4fa78f42b212ab32cfe56591c25d99ef983;hpb=93d42b4fcc6f055a428c9b63e386ac62c918d08a;p=platal.git diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index 28c6c4f..85a9210 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -38,11 +38,21 @@ function display_address_isIdentity($idt, $value, $test_reverse = true) function smarty_function_display_address($param, &$smarty) { - require_once('geocoding.inc.php'); $adr = $param['adr']; $txtad = $adr->text; - if (!$txtad && !$adr->phones() && !count($adr->phones())) { - return ""; + if (!$txtad) { + $txthtml = ''; + if ($adr->phones() && count($adr->phones())) { + require_once 'function.display_phones.php'; + $txthtml .= smarty_function_display_phones(array('tels' => $adr->phones()), $smarty); + } elseif (isset($param['phones']) && count($param['phones'])) { + require_once 'function.display_phones.php'; + $txthtml .= smarty_function_display_phones(array('tels' => $param['phones']), $smarty); + } + if (!isset($param['nodiv']) && $txthtml != '' && isset($param['pos'])) { + $txthtml = '
' . $txthtml . '
'; + } + return $txthtml; } $lines = explode("\n", $txtad); @@ -60,7 +70,7 @@ function smarty_function_display_address($param, &$smarty) . urlencode(implode(", ", $lines) . " ($idt)") . "\">\"Google"; $comment = ""; - if ($param['adr']['comment'] != "") + if ($adr->comment != "") { $commentHtml = str_replace(array('&', '"'), array('&', '"'), $adr->comment); $commentJs = str_replace(array('\\', '\''), array('\\\\', '\\\''), $commentHtml); @@ -85,11 +95,14 @@ function smarty_function_display_address($param, &$smarty) } foreach ($lines as $line) { - $txthtml .= "".$line."
\n"; + $txthtml .= "" . pl_entities($line) . "
\n"; } - if($adr->phones() != null) { - require_once('function.display_phones.php'); + if ($adr->phones() != null) { + require_once 'function.display_phones.php'; $txthtml .= smarty_function_display_phones(array('tels' => $adr->phones()),$smarty); + } else if (isset($param['phones']) && count($param['phones'])) { + require_once 'function.display_phones.php'; + $txthtml .= smarty_function_display_phones(array('tels' => $param['phones']),$smarty); } if (!$param['nodiv']) { $pos = $param['pos'] ? " style='float: " . $param['pos'] . "'" : '';