add link to google maps for all addresses
[platal.git] / plugins / function.display_address.php
CommitLineData
80ca1b4e 1<?php
2/***************************************************************************
bf73c651 3 * Copyright (C) 2003-2006 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
23function smarty_function_display_address($param, &$smarty) {
24 require_once('geoloc.inc.php');
25 $txtad = get_address_text($param['adr']);
79a5acea 26 if (!$txtad &&
27 !$param['adr']['tels'] && !count($param['adr']['tels']) &&
28 !$param['adr']['tel'] &&
29 !$param['adr']['fax'] &&
30 !$param['adr']['mobile']) return "";
80ca1b4e 31
32 $lines = explode("\n",$txtad);
33 $txthtml = "";
bf73c651 34 $map = "<a href=\"http://maps.google.com/?q=".urlencode(implode(", ", $lines))."\"><img src=\"".smarty_function_rel()."/images/loupe.gif\" alt=\"Carte\" title=\"Carte\"/></a>";
80ca1b4e 35 if ($param['titre'])
36 {
bf73c651 37 if ($param['titre_div'])
38 $txthtml .= "<div class='titre'>".$param['titre'].$map."</div>\n";
39 else
40 $txthtml .= "<em>".$param['titre']."</em>".$map."<br />\n";
80ca1b4e 41 }
42 foreach ($lines as $line)
43 {
bf73c651 44 $txthtml .= "<strong>".$line."</strong><br/>\n";
80ca1b4e 45 }
46 if ($param['adr']['tel'])
bf73c651 47 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['tel']."</strong>\n</div>\n";
80ca1b4e 48 if ($param['adr']['fax'])
bf73c651 49 $txthtml .= "<div>\n<em>Fax : </em>\n<strong>".$param['adr']['fax']."</strong>\n</div>\n";
80ca1b4e 50 if ($param['adr']['mobile'])
bf73c651 51 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['mobile']."</strong>\n</div>\n";
79a5acea 52 if ($param['adr']['tels'] && count($param['adr']['tels'])) {
53 foreach ($param['adr']['tels'] as $tel)
54 $txthtml .= "<div>\n<em>".$tel['tel_type']."&nbsp;: </em>\n<strong>".$tel['tel']."</strong>\n</div>\n";
55 }
80ca1b4e 56 if (!$params['nodiv'])
57 {
bf73c651 58 $txthtml = "<div class='adresse'>\n".$txthtml."</div>\n";
80ca1b4e 59 }
60 return $txthtml;
61}
62
63?>