Fix GoogleMaps links
[platal.git] / plugins / function.display_address.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2007 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22
23 function smarty_function_display_address($param, &$smarty)
24 {
25 require_once('geoloc.inc.php');
26 $txtad = get_address_text($param['adr']);
27 if (!$txtad &&
28 !$param['adr']['tels'] && !count($param['adr']['tels']) &&
29 !$param['adr']['tel'] &&
30 !$param['adr']['fax'] &&
31 !$param['adr']['mobile']) return "";
32
33 $lines = explode("\n", $txtad);
34 $idt = array_shift($lines);
35
36 $txthtml = "";
37 $map = "<a href=\"http://maps.google.fr/?q="
38 . urlencode(str_replace('États-Unis d\'Amérique', 'USA', implode(", ", $lines) . " ($idt)"))
39 . "\"><img src=\"images/icons/map.gif\" alt=\"Google Maps\" title=\"Carte\"/></a>";
40 array_unshift($lines, $idt);
41 if ($param['titre'])
42 {
43 if ($param['titre_div'])
44 $txthtml .= "<div class='titre'>".$param['titre'].$map."</div>\n";
45 else
46 $txthtml .= "<em>".$param['titre']."</em>".$map."<br />\n";
47 }
48 foreach ($lines as $line)
49 {
50 $txthtml .= "<strong>".$line."</strong><br/>\n";
51 }
52 if ($param['adr']['tel'])
53 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['tel']."</strong>\n</div>\n";
54 if ($param['adr']['fax'])
55 $txthtml .= "<div>\n<em>Fax : </em>\n<strong>".$param['adr']['fax']."</strong>\n</div>\n";
56 if ($param['adr']['mobile'])
57 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['mobile']."</strong>\n</div>\n";
58 if ($param['adr']['tels'] && count($param['adr']['tels'])) {
59 foreach ($param['adr']['tels'] as $tel)
60 $txthtml .= "<div>\n<em>".$tel['tel_type']."&nbsp;: </em>\n<strong>".$tel['tel']."</strong>\n</div>\n";
61 }
62 if (!$params['nodiv'])
63 {
64 $txthtml = "<div class='adresse'>\n".$txthtml."</div>\n";
65 }
66 return $txthtml;
67 }
68
69 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
70 ?>