Fix GoogleMaps links
[platal.git] / plugins / function.display_address.php
CommitLineData
80ca1b4e 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
80ca1b4e 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
92630203 23function smarty_function_display_address($param, &$smarty)
24{
80ca1b4e 25 require_once('geoloc.inc.php');
26 $txtad = get_address_text($param['adr']);
79a5acea 27 if (!$txtad &&
28 !$param['adr']['tels'] && !count($param['adr']['tels']) &&
29 !$param['adr']['tel'] &&
30 !$param['adr']['fax'] &&
31 !$param['adr']['mobile']) return "";
80ca1b4e 32
a450ecb7 33 $lines = explode("\n", $txtad);
92630203 34 $idt = array_shift($lines);
35
80ca1b4e 36 $txthtml = "";
92630203 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);
80ca1b4e 41 if ($param['titre'])
42 {
bf73c651 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";
80ca1b4e 47 }
48 foreach ($lines as $line)
49 {
bf73c651 50 $txthtml .= "<strong>".$line."</strong><br/>\n";
80ca1b4e 51 }
52 if ($param['adr']['tel'])
a7de4ef7 53 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['tel']."</strong>\n</div>\n";
80ca1b4e 54 if ($param['adr']['fax'])
bf73c651 55 $txthtml .= "<div>\n<em>Fax : </em>\n<strong>".$param['adr']['fax']."</strong>\n</div>\n";
80ca1b4e 56 if ($param['adr']['mobile'])
a7de4ef7 57 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['mobile']."</strong>\n</div>\n";
79a5acea 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 }
80ca1b4e 62 if (!$params['nodiv'])
63 {
bf73c651 64 $txthtml = "<div class='adresse'>\n".$txthtml."</div>\n";
80ca1b4e 65 }
66 return $txthtml;
67}
68
a7de4ef7 69// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
80ca1b4e 70?>