Backport
[platal.git] / plugins / function.display_address.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2006 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 require_once('geoloc.inc.php');
25 $txtad = get_address_text($param['adr']);
26 if (!$txtad &&
27 !$param['adr']['tels'] && !count($param['adr']['tels']) &&
28 !$param['adr']['tel'] &&
29 !$param['adr']['fax'] &&
30 !$param['adr']['mobile']) return "";
31
32 $lines = explode("\n", $txtad);
33 $txthtml = "";
34 $map = "<a href=\"http://maps.google.fr/?q=".urlencode(str_replace('États-Unis d\'Amérique', 'USA', implode(", ", $lines)))."\"><img src=\"images/icons/map.gif\" title=\"Carte\"/></a>";
35 if ($param['titre'])
36 {
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";
41 }
42 foreach ($lines as $line)
43 {
44 $txthtml .= "<strong>".$line."</strong><br/>\n";
45 }
46 if ($param['adr']['tel'])
47 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['tel']."</strong>\n</div>\n";
48 if ($param['adr']['fax'])
49 $txthtml .= "<div>\n<em>Fax : </em>\n<strong>".$param['adr']['fax']."</strong>\n</div>\n";
50 if ($param['adr']['mobile'])
51 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['mobile']."</strong>\n</div>\n";
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 }
56 if (!$params['nodiv'])
57 {
58 $txthtml = "<div class='adresse'>\n".$txthtml."</div>\n";
59 }
60 return $txthtml;
61 }
62
63 ?>