*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville 2002-12-12 16:29:47 +00:00
parent 42988dbece
commit 5e47c3f791
2 changed files with 38 additions and 20 deletions

View File

@ -21,6 +21,19 @@
*/ */
require("../main.inc.php3"); require("../main.inc.php3");
$strmonth[1] = "Janvier";
$strmonth[2] = "Février";
$strmonth[3] = "Mars";
$strmonth[4] = "Avril";
$strmonth[5] = "Mai";
$strmonth[6] = "Juin";
$strmonth[7] = "Juillet";
$strmonth[8] = "Août";
$strmonth[9] = "Septembre";
$strmonth[10] = "Octobre";
$strmonth[11] = "Novembre";
$strmonth[12] = "Décembre";
function llxHeader($head = "") { function llxHeader($head = "") {
global $user, $conf; global $user, $conf;
@ -56,7 +69,8 @@ function llxHeader($head = "") {
$menu->add("bank/index.php3","Bank"); $menu->add("bank/index.php3","Bank");
if ($conf->voyage) { if ($conf->voyage)
{
$menu->add("voyage/index.php3","Voyages"); $menu->add("voyage/index.php3","Voyages");
@ -69,14 +83,14 @@ function llxHeader($head = "") {
$menu->add_submenu("config.php3","Configuration"); $menu->add_submenu("config.php3","Configuration");
if ($user->compta > 0) { if ($user->compta > 0)
{
} else { }
else
{
$menu->clear(); $menu->clear();
$menu->add("/index.php3","Accueil"); $menu->add("/index.php3","Accueil");
} }
left_menu($menu->liste); left_menu($menu->liste);

View File

@ -40,14 +40,16 @@ function llxHeader($head = "") {
$menu->add_submenu("/comm/propal.php3", "Propales"); $menu->add_submenu("/comm/propal.php3", "Propales");
if ($user->compta > 0)
{
$menu->add("/compta/", "Comptabilité"); $menu->add("/compta/", "Comptabilité");
$menu->add_submenu("/compta/facture.php3", "Factures"); $menu->add_submenu("/compta/facture.php3", "Factures");
}
if ($conf->fichinter->enabled ) { if ($conf->fichinter->enabled )
{
$menu->add("/fichinter/", "Fiches d'intervention"); $menu->add("/fichinter/", "Fiches d'intervention");
} }
$menu->add("/fourn/index.php3", "Fournisseurs"); $menu->add("/fourn/index.php3", "Fournisseurs");
@ -56,6 +58,8 @@ function llxHeader($head = "") {
$menu->add("/service/", "Services"); $menu->add("/service/", "Services");
$menu->add("/adherents/", "Adherents");
$menu->add("/user/", "Utilisateurs"); $menu->add("/user/", "Utilisateurs");
$menu->add("/info.php3", "Configuration"); $menu->add("/info.php3", "Configuration");