dolibarr/htdocs/compta/charges/pre.inc.php

50 lines
1.5 KiB
PHP
Raw Normal View History

<?php
2003-06-30 01:03:09 +02:00
/* Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2005-01-30 01:50:47 +01:00
* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
2002-06-19 11:26:47 +02: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.
*
* $Id$
* $Source$
*/
2007-05-05 01:12:14 +02:00
/**
\file htdocs/compta/charges/pre.inc.php
\ingroup tax
\brief Fichier gestionnaire du menu charges
*/
2003-09-11 22:18:51 +02:00
require("../../main.inc.php");
2002-06-19 11:26:47 +02:00
2007-05-05 01:12:14 +02:00
function llxHeader($head = '', $title='', $help_url='')
2003-06-29 15:24:24 +02:00
{
2005-08-11 22:26:24 +02:00
global $user, $conf, $langs;
$langs->load("compta");
$langs->load("propal");
top_menu($head, $title, $target);
2005-08-11 22:26:24 +02:00
$menu = new Menu();
$menu->add("index.php",$langs->trans("Contributions"));
$menu->add_submenu(DOL_URL_ROOT."/compta/sociales/index.php",$langs->trans("SocialContributions"));
left_menu($menu->liste);
2002-06-19 11:26:47 +02:00
}
?>