dolibarr/htdocs/societe/info.php

86 lines
2.6 KiB
PHP
Raw Normal View History

2005-11-11 17:37:53 +01:00
<?php
2012-03-28 19:39:56 +02:00
/* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
2012-12-30 15:11:07 +01:00
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
2012-03-28 19:39:56 +02:00
* Copyright (C) 2010 Juanjo Menent <jmenent@2byte.es>
2005-11-11 17:37:53 +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
2005-11-11 17:37:53 +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:19:04 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2005-11-11 17:37:53 +01:00
*/
/**
* \file htdocs/societe/info.php
* \ingroup societe
* \brief Page des informations d'une societe
*/
2005-11-11 17:37:53 +01:00
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
2005-11-11 17:37:53 +01:00
$langs->load("companies");
2005-12-02 14:20:06 +01:00
$langs->load("other");
2012-09-15 10:01:35 +02:00
if (! empty($conf->notification->enabled)) $langs->load("mails");
2005-11-11 17:37:53 +01:00
2008-02-25 17:30:43 +01:00
// Security check
2012-03-28 19:39:56 +02:00
$socid = GETPOST('socid','int');
2008-02-25 21:03:21 +01:00
if ($user->societe_id) $socid=$user->societe_id;
2012-03-28 19:39:56 +02:00
$result = restrictedArea($user, 'societe', $socid, '&societe');
2006-03-10 18:32:47 +01:00
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
$hookmanager->initHooks(array('infothirdparty'));
2005-11-11 17:37:53 +01:00
/*
* Actions
*/
$parameters=array('id'=>$socid);
$reshook=$hookmanager->executeHooks('doActions',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
2005-11-11 17:37:53 +01:00
/*
* View
*/
2008-02-24 15:41:07 +01:00
$object = new Societe($db);
$object->fetch($socid);
$object->info($socid);
2005-11-11 17:37:53 +01:00
$title=$langs->trans("ThirdParty");
if (! empty($conf->global->MAIN_HTML_TITLE) && preg_match('/thirdpartynameonly/',$conf->global->MAIN_HTML_TITLE) && $object->name) $title=$object->name.' - '.$langs->trans("Info");
$help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
llxHeader('',$title,$help_url);
$head = societe_prepare_head($object);
2005-11-11 17:37:53 +01:00
2009-08-05 19:19:55 +02:00
dol_fiche_head($head, 'info', $langs->trans("ThirdParty"),0,'company');
2005-11-11 17:37:53 +01:00
print '<table width="100%"><tr><td>';
dol_print_object_info($object);
2005-11-11 17:37:53 +01:00
print '</td></tr></table>';
2014-08-15 21:18:56 +02:00
dol_fiche_end();
2005-11-11 17:37:53 +01:00
llxFooter();
$db->close();