X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.display_address.php;h=98dfdef4c880c2701bf1b53b00989c0580b04454;hb=646a45825d19a33e2fcafe7ad5ddd773eea0df46;hp=d9ef5e2a00d89383f7869c29ed05ff9720a4ac21;hpb=5ddeb07cc787dd1dc3630a31f1528f5cc7c4d9b9;p=platal.git diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index d9ef5e2..98dfdef 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -1,6 +1,6 @@ \"Google"; + $map = "\"Google"; + $comment = ""; + if ($param['adr']['comment'] != "") + { + $commentHtml = str_replace(array('&', '"'), array('&', '"'), $param['adr']['comment']); + $commentJs = str_replace(array('\\', '\''), array('\\\\', '\\\''), $commentHtml); + $comment = "\"Commentaire\""; + } + if ($restore) { + array_unshift($lines, $idt); + } if ($param['titre']) { if ($param['titre_div']) - $txthtml .= "
".$param['titre'].$map."
\n"; - else - $txthtml .= "".$param['titre']."".$map."
\n"; + $txthtml .= "
".pl_entity_decode($param['titre'])." ".$map.$comment."
\n"; + else + $txthtml .= "".pl_entity_decode($param['titre'])." ".$map.$comment."
\n"; } foreach ($lines as $line) { $txthtml .= "".$line."
\n"; } if ($param['adr']['tel']) - $txthtml .= "
\nTél : \n".$param['adr']['tel']."\n
\n"; + $txthtml .= "
\nTél : \n".$param['adr']['tel']."\n
\n"; if ($param['adr']['fax']) $txthtml .= "
\nFax : \n".$param['adr']['fax']."\n
\n"; if ($param['adr']['mobile']) - $txthtml .= "
\nTél : \n".$param['adr']['mobile']."\n
\n"; + $txthtml .= "
\nTél : \n".$param['adr']['mobile']."\n
\n"; if ($param['adr']['tels'] && count($param['adr']['tels'])) { - foreach ($param['adr']['tels'] as $tel) + foreach ($param['adr']['tels'] as $tel) $txthtml .= "
\n".$tel['tel_type']." : \n".$tel['tel']."\n
\n"; } - if (!$params['nodiv']) - { - $txthtml = "
\n".$txthtml."
\n"; + if (!$param['nodiv']) { + $pos = $param['pos'] ? " style='float: " . $param['pos'] . "'" : ''; + $txthtml = "
\n".$txthtml."
\n"; } return $txthtml; } +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>