2004-10-19 22:35:36 +02:00
|
|
|
|
<?php
|
2003-05-16 12:02:50 +02:00
|
|
|
|
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2002-06-18 20:21:12 +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.
|
|
|
|
|
|
*
|
2002-06-20 15:23:17 +02:00
|
|
|
|
* $Id$
|
|
|
|
|
|
* $Source$
|
|
|
|
|
|
*
|
2002-06-18 20:21:12 +02:00
|
|
|
|
*/
|
2003-09-11 22:18:51 +02:00
|
|
|
|
require("../../main.inc.php");
|
2002-06-18 20:21:12 +02:00
|
|
|
|
|
|
|
|
|
|
function llxHeader($head = "") {
|
|
|
|
|
|
global $user, $conf;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
top_menu($head);
|
|
|
|
|
|
|
|
|
|
|
|
$menu = new Menu();
|
|
|
|
|
|
|
2003-08-25 12:38:18 +02:00
|
|
|
|
$menu->add("index.php","TVA");
|
2002-09-26 16:26:32 +02:00
|
|
|
|
|
2004-02-16 21:39:41 +01:00
|
|
|
|
$menu->add_submenu("reglement.php","R<EFBFBD>glements");
|
2003-07-23 16:17:04 +02:00
|
|
|
|
$menu->add_submenu("fiche.php?action=create","Nouveau r<>glement");
|
2002-06-18 20:21:12 +02:00
|
|
|
|
|
|
|
|
|
|
left_menu($menu->liste);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|