nb de tels variables par adresse, wish 400
[platal.git] / plugins / function.display_address.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2004 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 if ($param['titre'])
35 {
36 if ($param['titre_div'])
37 $txthtml .= "<div class='titre'>".$param['titre']."</div>\n";
38 else
39 $txthtml .= "<em>".$param['titre']."</em><br />\n";
40 }
41 foreach ($lines as $line)
42 {
43 $txthtml .= "<strong>".$line."</strong><br/>\n";
44 }
45 if ($param['adr']['tel'])
46 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['tel']."</strong>\n</div>\n";
47 if ($param['adr']['fax'])
48 $txthtml .= "<div>\n<em>Fax : </em>\n<strong>".$param['adr']['fax']."</strong>\n</div>\n";
49 if ($param['adr']['mobile'])
50 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['mobile']."</strong>\n</div>\n";
51 if ($param['adr']['tels'] && count($param['adr']['tels'])) {
52 foreach ($param['adr']['tels'] as $tel)
53 $txthtml .= "<div>\n<em>".$tel['tel_type']."&nbsp;: </em>\n<strong>".$tel['tel']."</strong>\n</div>\n";
54 }
55 if (!$params['nodiv'])
56 {
57 $txthtml = "<div class='adresse'>\n".$txthtml."</div>\n";
58 }
59 return $txthtml;
60 }
61
62 ?>