dolibarr/htdocs/comm/action/info.php

83 lines
2.1 KiB
PHP
Raw Normal View History

2006-03-19 00:20:21 +01:00
<?php
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2009-08-05 19:19:55 +02:00
* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
2006-03-19 00:20:21 +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 2 of the License, or
* (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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
2009-08-05 19:19:55 +02:00
* \file htdocs/comm/action/info.php
* \ingroup agenda
* \brief Page des informations d'une action
* \version $Id$
*/
2006-03-19 00:20:21 +01:00
require("./pre.inc.php");
2009-02-19 20:06:12 +01:00
require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php");
2006-03-19 00:20:21 +01:00
require_once(DOL_DOCUMENT_ROOT."/contact.class.php");
require_once(DOL_DOCUMENT_ROOT."/cactioncomm.class.php");
require_once(DOL_DOCUMENT_ROOT."/actioncomm.class.php");
$langs->load("commercial");
2008-12-03 22:17:51 +01:00
// Security check
2009-02-19 20:06:12 +01:00
if ($user->societe_id > 0)
2006-03-19 00:20:21 +01:00
{
$action = '';
$socid = $user->societe_id;
2006-03-19 00:20:21 +01:00
}
2009-08-05 19:19:55 +02:00
2006-03-19 00:20:21 +01:00
/*
2009-08-05 19:19:55 +02:00
* View
2006-03-19 00:20:21 +01:00
*/
llxHeader();
$act = new ActionComm($db);
$act->fetch($_GET["id"]);
$act->info($_GET["id"]);
$h=0;
$head[$h][0] = DOL_URL_ROOT.'/comm/action/fiche.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans("CardAction");
$hselected=$h;
$h++;
$head[$h][0] = DOL_URL_ROOT.'/comm/action/document.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans('Documents');
$h++;
$head[$h][0] = DOL_URL_ROOT.'/comm/action/info.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans('Info');
$hselected=$h;
$h++;
2009-08-05 19:19:55 +02:00
dol_fiche_head($head, $hselected, $langs->trans("Action"),0,'task');
2006-03-19 00:20:21 +01:00
print '<table width="100%"><tr><td>';
dol_print_object_info($act);
2006-03-19 00:20:21 +01:00
print '</td></tr></table>';
print '</div>';
$db->close();
llxFooter('$Date$ - $Revision$');
?>