2004-10-19 22:43:23 +02:00
|
|
|
<?php
|
2006-03-14 23:23:12 +01:00
|
|
|
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2010-03-26 23:11:11 +01:00
|
|
|
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
2012-12-30 15:13:49 +01:00
|
|
|
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
|
2004-01-31 12:35:05 +01:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-01-31 12:35:05 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2011-08-01 01:54:11 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-01-31 12:35:05 +01:00
|
|
|
*/
|
2004-10-23 02:46:54 +02:00
|
|
|
|
2004-12-25 19:37:40 +01:00
|
|
|
/**
|
2009-05-07 02:36:45 +02:00
|
|
|
* \file htdocs/contact/info.php
|
|
|
|
|
* \ingroup societe
|
|
|
|
|
* \brief Onglet info d'un contact
|
|
|
|
|
*/
|
2004-10-23 02:46:54 +02:00
|
|
|
|
2012-08-22 23:24:21 +02:00
|
|
|
require '../main.inc.php';
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
|
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/contact.lib.php';
|
2004-10-23 02:46:54 +02:00
|
|
|
|
2004-11-11 22:19:50 +01:00
|
|
|
$langs->load("companies");
|
2004-10-23 02:46:54 +02:00
|
|
|
|
2008-02-25 17:30:43 +01:00
|
|
|
// Security check
|
2006-03-11 17:04:19 +01:00
|
|
|
$contactid = isset($_GET["id"])?$_GET["id"]:'';
|
2008-02-25 21:03:21 +01:00
|
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
2012-01-10 17:16:17 +01:00
|
|
|
$result = restrictedArea($user, 'contact', $contactid, 'socpeople&societe');
|
2006-03-11 17:04:19 +01:00
|
|
|
|
|
|
|
|
|
2006-03-14 23:23:12 +01:00
|
|
|
|
|
|
|
|
/*
|
2008-02-25 17:30:43 +01:00
|
|
|
* View
|
|
|
|
|
*/
|
2006-03-14 23:23:12 +01:00
|
|
|
|
2011-01-26 19:58:01 +01:00
|
|
|
llxHeader('',$langs->trans("ContactsAddresses"),'EN:Module_Third_Parties|FR:Module_Tiers|ES:Módulo_Empresas');
|
2004-01-31 12:35:05 +01:00
|
|
|
|
2004-11-11 22:15:34 +01:00
|
|
|
|
|
|
|
|
$contact = new Contact($db);
|
|
|
|
|
$contact->fetch($_GET["id"], $user);
|
2012-01-18 00:16:02 +01:00
|
|
|
$contact->info($_GET["id"]);
|
2004-11-11 22:15:34 +01:00
|
|
|
|
|
|
|
|
|
2006-11-19 05:56:10 +01:00
|
|
|
$head = contact_prepare_head($contact);
|
2004-11-11 22:15:34 +01:00
|
|
|
|
2011-01-26 19:58:01 +01:00
|
|
|
dol_fiche_head($head, 'info', $langs->trans("ContactsAddresses"), 0, 'contact');
|
2004-11-11 22:15:34 +01:00
|
|
|
|
2004-01-31 12:35:05 +01:00
|
|
|
|
2004-11-11 22:15:34 +01:00
|
|
|
print '<table width="100%"><tr><td>';
|
|
|
|
|
print '</td></tr></table>';
|
2009-02-19 20:06:12 +01:00
|
|
|
|
2009-01-07 11:57:36 +01:00
|
|
|
dol_print_object_info($contact);
|
2004-01-31 12:35:05 +01:00
|
|
|
|
2005-07-11 02:49:16 +02:00
|
|
|
print "</div>";
|
2004-07-17 17:35:08 +02:00
|
|
|
|
2012-01-10 17:16:17 +01:00
|
|
|
llxFooter();
|
|
|
|
|
|
2004-01-31 12:35:05 +01:00
|
|
|
$db->close();
|
|
|
|
|
?>
|