X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.display_address.php;h=9f8c457f93f3e09b9d39d05aa709f191d69b9dfc;hb=7e640aad8f8b36ec7bf09d85d794f82521a3b81e;hp=45cbb8e535e55da0d58ca56766fe5dafaf265443;hpb=a7de4ef724d1a3b0bf978a50ce7cc9d23412c7a0;p=platal.git diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index 45cbb8e..85a9210 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -1,6 +1,6 @@ text; + 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); + $idt = array_shift($lines); + $restore = true; + + if (!display_address_isIdentity($param['for'], $idt)) { + array_unshift($lines, $idt); + $idt = $param['for']; + $restore = false; + } + $txthtml = ""; - $map = "\"Google"; + $map = "\"Google"; + $comment = ""; + if ($adr->comment != "") + { + $commentHtml = str_replace(array('&', '"'), array('&', '"'), $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"; + $txthtml .= "" . pl_entities($line) . "
\n"; } - if ($param['adr']['tel']) - $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"; - if ($param['adr']['tels'] && count($param['adr']['tels'])) { - foreach ($param['adr']['tels'] as $tel) - $txthtml .= "
\n".$tel['tel_type']." : \n".$tel['tel']."\n
\n"; + 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 (!$params['nodiv']) - { - $txthtml = "
\n".$txthtml."
\n"; + if (!$param['nodiv']) { + $pos = $param['pos'] ? " style='float: " . $param['pos'] . "'" : ''; + $txthtml = "
\n".$txthtml."
\n"; } return $txthtml; }