X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.display_address.php;h=6a632ad8ea5fd96e7ab6bb1918b18c3972153c51;hb=5e4417a9f3f2dfa9ad9207de4022beeb14c797df;hp=9f8c457f93f3e09b9d39d05aa709f191d69b9dfc;hpb=179afa7fa79902e11498314d37fe4dbf452b3617;p=platal.git diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index 9f8c457..6a632ad 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -46,7 +46,6 @@ function smarty_function_display_address($param, &$smarty) !$param['adr']['fax'] && !$param['adr']['mobile']) return ""; - $lines = explode("\n", $txtad); $idt = array_shift($lines); $restore = true; @@ -61,15 +60,29 @@ function smarty_function_display_address($param, &$smarty) $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"; + $txthtml .= "
".pl_entity_decode($param['titre'])." ".$map.$comment."
\n"; else - $txthtml .= "".$param['titre']."".$map."
\n"; + $txthtml .= "".pl_entity_decode($param['titre'])." ".$map.$comment."
\n"; } foreach ($lines as $line) { @@ -80,10 +93,24 @@ function smarty_function_display_address($param, &$smarty) 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 .= "
\nMob : \n".$param['adr']['mobile']."\n
\n"; if ($param['adr']['tels'] && count($param['adr']['tels'])) { - foreach ($param['adr']['tels'] as $tel) - $txthtml .= "
\n".$tel['tel_type']." : \n".$tel['tel']."\n
\n"; + foreach ($param['adr']['tels'] as $tel) { + switch ($tel['tel_type']) { + case 'fixed': + $tel_type = 'Tél'; + break; + case 'fax': + $tel_type = 'Fax'; + break; + case 'mobile': + $tel_type = 'Mob'; + break; + default: + $tel_type = $tel['tel_type']; + } + $txthtml .= "
\n" . $tel_type . " : \n" . $tel['tel'] . "\n
\n"; + } } if (!$param['nodiv']) { $pos = $param['pos'] ? " style='float: " . $param['pos'] . "'" : '';