From ebe545d1979bc9c11ca8307af39570b2ca79b3ec Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 26 Jul 2004 12:31:16 +0000 Subject: [PATCH] Ajout du message du jour --- htdocs/admin/ihm.php | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/htdocs/admin/ihm.php b/htdocs/admin/ihm.php index 59514d8d0cf..502a9907d3c 100644 --- a/htdocs/admin/ihm.php +++ b/htdocs/admin/ihm.php @@ -27,12 +27,13 @@ if (!$user->admin) if ($_POST["action"] == 'update') { - dolibarr_set_const($db, "MAIN_THEME",$_POST["main_theme"]); - dolibarr_set_const($db, "SIZE_LISTE_LIMIT",$_POST["size_liste_limit"]); - dolibarr_set_const($db, "MAIN_MENU_BARRETOP",$_POST["main_menu_barretop"]); + dolibarr_set_const($db, "MAIN_THEME", $_POST["main_theme"]); + dolibarr_set_const($db, "SIZE_LISTE_LIMIT", $_POST["size_liste_limit"]); + dolibarr_set_const($db, "MAIN_MENU_BARRETOP", $_POST["main_menu_barretop"]); dolibarr_set_const($db, "MAIN_SEARCHFORM_CONTACT",$_POST["main_searchform_contact"]); dolibarr_set_const($db, "MAIN_SEARCHFORM_SOCIETE",$_POST["main_searchform_societe"]); - dolibarr_set_const($db, "MAIN_LANG_DEFAULT",$_POST["main_lang_default"]); + dolibarr_set_const($db, "MAIN_LANG_DEFAULT", $_POST["main_lang_default"]); + dolibarr_set_const($db, "MAIN_MOTD", trim($_POST["main_motd"])); Header("Location: ihm.php"); } @@ -40,6 +41,11 @@ if ($_POST["action"] == 'update') llxHeader(); +if (!defined("MAIN_MOTD") && strlen(trim(MAIN_MOTD))) +{ + define("MAIN_MOTD",""); +} + print_titre("Configuration IHM (Dolibarr version ".DOL_VERSION.")"); print "
\n"; @@ -115,6 +121,10 @@ if ($_GET["action"] == 'edit') print 'Afficher formulaire de recherche Contacts dans la barre de gauche'; print 'Afficher formulaire de recherche Sociétés dans la barre de gauche'; + + print 'Message du jour'; + + print '
'; print '
'; @@ -137,8 +147,15 @@ else print 'Langue par défaut à utiliser (code langue)' . MAIN_LANG_DEFAULT . ''; print 'Afficher zone de recherche Contacts dans le menu gauche' . (MAIN_SEARCHFORM_CONTACT?"oui":"non") . ''; print 'Afficher zone de recherche Sociétés dans le menu gauche' . (MAIN_SEARCHFORM_SOCIETE?"oui":"non") . ''; + + + print 'Message du jour' . stripslashes(nl2br(MAIN_MOTD)) . ''; + print '
'; + + + print '
'; print 'Editer'; print '
';