reecriture des adresses dans le bon sens selon le pays
[platal.git] / plugins / function.display_address.php
CommitLineData
80ca1b4e 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
23function smarty_function_display_address($param, &$smarty) {
24 require_once('geoloc.inc.php');
25 $txtad = get_address_text($param['adr']);
26 if (!$txtad && !$param['adr']['tel'] && !$param['adr']['fax'] && !$param['adr']['mobile']) return "";
27
28 $lines = explode("\n",$txtad);
29 $txthtml = "";
30 if ($param['titre'])
31 {
32 if ($param['titre_div'])
33 $txthtml .= "<div class='titre'>".$param['titre']."</div>\n";
34 else
35 $txthtml .= "<em>".$param['titre']."</em><br />\n";
36 }
37 foreach ($lines as $line)
38 {
39 $txthtml .= "<strong>".$line."</strong><br/>\n";
40 }
41 if ($param['adr']['tel'])
42 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['tel']."</strong>\n</div>\n";
43 if ($param['adr']['fax'])
44 $txthtml .= "<div>\n<em>Fax : </em>\n<strong>".$param['adr']['fax']."</strong>\n</div>\n";
45 if ($param['adr']['mobile'])
46 $txthtml .= "<div>\n<em>Tél : </em>\n<strong>".$param['adr']['mobile']."</strong>\n</div>\n";
47 if (!$params['nodiv'])
48 {
49 $txthtml = "<div class='adresse'>\n".$txthtml."</div>\n";
50 }
51 return $txthtml;
52}
53
54?>