dolibarr/htdocs/comm/action/info.php

70 lines
2.0 KiB
PHP
Raw Normal View History

2006-03-19 00:20:21 +01:00
<?php
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2010-05-07 21:33:17 +02:00
* Copyright (C) 2004-2010 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
2010-03-27 03:35:08 +01:00
require("../../main.inc.php");
require_once(DOL_DOCUMENT_ROOT."/lib/agenda.lib.php");
2009-02-19 20:06:12 +01:00
require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php");
2010-04-28 09:55:43 +02:00
require_once(DOL_DOCUMENT_ROOT."/contact/class/contact.class.php");
2010-06-05 17:20:09 +02:00
require_once(DOL_DOCUMENT_ROOT."/comm/action/class/cactioncomm.class.php");
require_once(DOL_DOCUMENT_ROOT."/comm/action/class/actioncomm.class.php");
2006-03-19 00:20:21 +01:00
$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
*/
2010-05-07 21:33:17 +02:00
$help_url='EN:Module_Agenda_En|FR:Module_Agenda|ES:M&omodulodulo_Agenda';
llxHeader('',$langs->trans("Agenda"),$help_url);
2006-03-19 00:20:21 +01:00
$act = new ActionComm($db);
$act->fetch($_GET["id"]);
$act->info($_GET["id"]);
$head=actions_prepare_head($act);
dol_fiche_head($head, 'info', $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$');
?>