\"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 .= "
".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"; if ($param['adr']['fax']) $txthtml .= "
\nFax : \n".$param['adr']['fax']."\n
\n"; if ($param['adr']['mobile']) $txthtml .= "
\nMob : \n".$param['adr']['mobile']."\n
\n"; if ($param['adr']['tels'] && count($param['adr']['tels'])) { 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'] . "'" : ''; $txthtml = "
\n".$txthtml."
\n"; } return $txthtml; } // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>