X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.display_address.php;h=02e1edc5ae4877478e3a98de80ed23a50c88be81;hb=9dd0544eb8fa39338b76e30c37022a1f76ed83eb;hp=55c1f16fa998ad9ac0da0839a90498c031b7e47b;hpb=d145d6055bb13d535eaf0ac5adb1c77b3bb6d424;p=platal.git diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index 55c1f16..02e1edc 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -1,6 +1,6 @@ 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); @@ -87,9 +97,12 @@ function smarty_function_display_address($param, &$smarty) { $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'] . "'" : '';