dolibarr/htdocs/service/pre.inc.php3

54 lines
1.4 KiB
PHP
Raw Normal View History

2002-04-30 14:00:55 +02:00
<?PHP
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
*
* $Id$
* $Source$
*
* 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.
*
*/
require("../main.inc.php3");
function llxHeader($head = "", $urlp = "") {
2002-05-04 23:28:42 +02:00
global $user, $conf;
2002-04-30 14:00:55 +02:00
2002-05-04 23:28:42 +02:00
/*
*
*
*/
top_menu($head);
2002-04-30 14:00:55 +02:00
2002-05-09 16:57:48 +02:00
$menu = new Menu();
2002-04-30 14:00:55 +02:00
2002-05-09 16:57:48 +02:00
$menu->add("/product/index.php3", "Produits");
2002-04-30 14:00:55 +02:00
2002-05-09 16:57:48 +02:00
$menu->add("/service/index.php3", "Services");
2002-05-06 21:10:48 +02:00
2002-06-19 13:16:45 +02:00
$menu->add_submenu("/service/fiche.php3?action=create", "Nouveau");
2002-05-09 16:57:48 +02:00
$menu->add("/comm/index.php3", "Clients");
2002-04-30 14:00:55 +02:00
2002-05-09 16:57:48 +02:00
$menu->add("/fourn/index.php3", "Fournisseurs");
2002-04-30 14:00:55 +02:00
2002-05-09 16:57:48 +02:00
$menu->add_submenu("/soc.php3?&action=create","Nouvelle soci<63>t<EFBFBD>e");
$menu->add_submenu("contact.php3","Contacts");
2002-04-30 14:00:55 +02:00
2002-05-09 16:57:48 +02:00
left_menu($menu->liste);
2002-04-30 14:00:55 +02:00
}
?>