dolibarr/htdocs/comm/action/info.php

71 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 3 of the License, or
2006-03-19 00:20:21 +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 00:21:57 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2006-03-19 00:20:21 +01:00
*/
/**
2009-08-05 19:19:55 +02:00
* \file htdocs/comm/action/info.php
* \ingroup agenda
* \brief Page des informations d'une action
*/
2006-03-19 00:20:21 +01:00
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.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.'/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");
$id = GETPOST('id','int');
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
}
2013-09-24 11:11:59 +02:00
$result = restrictedArea($user, 'agenda', $id, 'actioncomm&societe', 'myactions&allactions', 'fk_soc', '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($id);
$act->info($act->id);
2006-03-19 00:20:21 +01:00
$head=actions_prepare_head($act);
2011-05-17 12:16:24 +02:00
dol_fiche_head($head, 'info', $langs->trans("Action"),0,'action');
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();
2006-03-19 00:20:21 +01:00
?>