dolibarr/htdocs/contact/info.php

87 lines
2.3 KiB
PHP
Raw Normal View History

<?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>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2005-2015 Regis Houssin <regis.houssin@inodbox.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
* 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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://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
/**
* \file htdocs/contact/info.php
* \ingroup societe
* \brief Onglet info d'un contact
*/
2004-10-23 02:46:54 +02:00
require '../main.inc.php';
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
2018-05-26 20:32:23 +02:00
// Load translation files required by the page
2004-11-11 22:19:50 +01:00
$langs->load("companies");
2004-10-23 02:46:54 +02:00
2015-07-14 17:28:19 +02:00
2008-02-25 17:30:43 +01:00
// Security check
$id = GETPOST("id", 'int');
2021-02-23 21:16:15 +01:00
if ($user->socid) {
$socid = $user->socid;
}
$result = restrictedArea($user, 'contact', $id, 'socpeople&societe');
2006-03-11 17:04:19 +01:00
$object = new Contact($db);
2006-03-11 17:04:19 +01:00
2006-03-14 23:23:12 +01:00
/*
2014-09-13 19:04:25 +02:00
* View
*/
$form = new Form($db);
$title = (!empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) ? $langs->trans("Contacts") : $langs->trans("ContactsAddresses"));
2006-03-14 23:23:12 +01:00
llxHeader('', $title, 'EN:Module_Third_Parties|FR:Module_Tiers|ES:M&oacute;dulo_Empresas');
2004-01-31 12:35:05 +01:00
2021-02-23 21:16:15 +01:00
if ($id > 0) {
$result = $object->fetch($id, $user);
$object->info($id);
$head = contact_prepare_head($object);
2020-10-22 22:50:03 +02:00
print dol_get_fiche_head($head, 'info', $title, -1, 'contact');
2004-01-31 12:35:05 +01:00
$linkback = '<a href="'.DOL_URL_ROOT.'/contact/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', '');
print '<div class="fichecenter">';
print '<div class="underbanner clearboth"></div>';
2009-02-19 20:06:12 +01:00
print '<br>';
dol_print_object_info($object);
2004-01-31 12:35:05 +01:00
print '</div>';
2020-10-27 18:19:31 +01:00
print dol_get_fiche_end();
}
llxFooter();
2004-01-31 12:35:05 +01:00
$db->close();