X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.display_address.php;h=74483c3d94e033cbae2901c207fc798d1ef15795;hb=9b42c0b551d0ce7286e5b719ab49959829e99031;hp=3278f6e89bc9ce90859881f6fe6641864bba6402;hpb=ce0d7be772306674fadaf020511871aba1683816;p=platal.git diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index 3278f6e..74483c3 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -1,6 +1,6 @@ text; @@ -69,6 +69,11 @@ function smarty_function_display_address($param, &$smarty) $map = "\"Google"; + if ($adr->flags->hasflag('mail')) { + $mail = ' Adresse courier'; + } else { + $mail = ''; + } $comment = ""; if ($adr->comment != "") { @@ -89,9 +94,9 @@ function smarty_function_display_address($param, &$smarty) if ($param['titre']) { if ($param['titre_div']) - $txthtml .= "
".pl_entity_decode($param['titre'])." ".$map.$comment."
\n"; + $txthtml .= '
' . pl_entity_decode($param['titre']) . ' ' . $map . $mail . $comment . "
\n"; else - $txthtml .= "".pl_entity_decode($param['titre'])." ".$map.$comment."
\n"; + $txthtml .= '' . pl_entity_decode($param['titre']) . ' ' . $map . $mail . $comment . "
\n"; } foreach ($lines as $line) { @@ -111,5 +116,5 @@ function smarty_function_display_address($param, &$smarty) return $txthtml; } -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8: ?>