Gestion de l'aide en ligne

This commit is contained in:
Rodolphe Quiedeville 2004-07-21 14:26:23 +00:00
parent 1f4c517f45
commit 3ae6d64280

View File

@ -1,5 +1,5 @@
<?PHP <?PHP
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
@ -23,19 +23,19 @@
require ("../main.inc.php"); require ("../main.inc.php");
require("./project.class.php"); require("./project.class.php");
function llxHeader($head = "", $title="", $help_url='')
function llxHeader($head = "", $urlp = "") { {
/* /*
* *
* *
*/ */
top_menu($head); top_menu($head, $title);
$menu = new Menu(); $menu = new Menu();
$menu->add(DOL_URL_ROOT."/projet/", "Projets"); $menu->add(DOL_URL_ROOT."/projet/", "Projets");
left_menu($menu->liste); left_menu($menu->liste, $help_url);
} }
?> ?>