2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/admin/ihm.php

168 lines
6.0 KiB
PHP
Raw Blame History

<?PHP
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
*
* 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.
*
* $Id$
* $Source$
*/
require("./pre.inc.php");
if (!$user->admin)
accessforbidden();
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_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_MOTD", trim($_POST["main_motd"]));
Header("Location: ihm.php");
}
llxHeader();
if (!defined("MAIN_MOTD") && strlen(trim(MAIN_MOTD)))
{
define("MAIN_MOTD","");
}
print_titre("Configuration IHM (Dolibarr version ".DOL_VERSION.")");
print "<br>\n";
if ($_GET["action"] == 'edit')
{
print '<form method="post" action="ihm.php">';
print '<table class="noborder" cellpadding="3" cellspacing="0" width="100%">';
print '<tr class="liste_titre"><td>Nom</td><td>Valeur</td></tr>';
print '<tr class="impair"><td>Th<54>me</td>';
print '<td><select name="main_theme">';
clearstatcache();
$dir = "../theme/";
$handle=opendir($dir);
while (($file = readdir($handle))!==false)
{
if (is_dir($dir.$file) && substr($file, 0, 1) <> '.' && substr($file, 0, 3) <> 'CVS')
{
if ($file == MAIN_THEME)
{
print '<option value="'.$file.'" selected>'.$file;
}
else
{
print '<option value="'.$file.'">'.$file;
}
}
}
print '</select>';
print '<input type="hidden" name="action" value="update">';
print '</td></tr>';
print '<tr class="pair"><td width="50%">Longueur maximum des listes</td><td><input name="size_liste_limit" size="20" value="' . SIZE_LISTE_LIMIT . '"></td></tr>';
print '<tr class="impair"><td width="50%">Gestionnaire du menu du haut</td>';
print '<td><select name="main_menu_barretop">';
$dir = "../includes/menus/barre_top/";
$handle=opendir($dir);
while (($file = readdir($handle))!==false)
{
if (is_file($dir.$file) && substr($file, 0, 1) <> '.' && substr($file, 0, 3) <> 'CVS')
{
$filelib=eregi_replace('\.php$','',$file);
if ($file == MAIN_MENU_BARRETOP)
{
print '<option value="'.$file.'" selected>'.$filelib.'</option>';
}
else
{
print '<option value="'.$file.'">'.$filelib.'</option>';
}
}
}
print '</select>';
print '</td></tr>';
print '<tr class="pair"><td width="50%">Langue par d<>faut <20> utiliser (code langue)</td><td>';
print '<select name="main_lang_default">';
// On parcour le r<>pertoire langs pour d<>tecter les langues possibles
$handle=opendir(DOL_DOCUMENT_ROOT ."/langs");
while ($file = trim(readdir($handle))){
if($file != "." && $file != ".." && $file != "CVS") {
print '<option value="'.$file.'"'.(MAIN_LANG_DEFAULT==$file?'selected':'').'>'.$file.'</option>';
}
}
print '</select>';
print '</td></tr>';
print '<tr class="impair"><td width="50%">Afficher formulaire de recherche Contacts dans la barre de gauche</td><td><input name="main_searchform_contact" size="20" value="' . MAIN_SEARCHFORM_CONTACT . '"></td></tr>';
print '<tr class="pair"><td width="50%">Afficher formulaire de recherche Soci<63>t<EFBFBD>s dans la barre de gauche</td><td><input name="main_searchform_societe" size="20" value="' . MAIN_SEARCHFORM_SOCIETE . '"></td></tr>';
print '<tr class="pair"><td width="50%">Message du jour</td><td><textarea cols="40" rows="3" name="main_motd" size="20">' .stripslashes(MAIN_MOTD) . '</textarea></td></tr>';
print '</table><br>';
print '<div class="tabsAction">';
print '<input class="tabAction" type="submit" value="Enregistrer">';
print '</div>';
print '</form>';
}
else
{
print '<table class="noborder" cellpadding="3" cellspacing="0" width="100%">';
print '<tr class="liste_titre"><td>Nom</td><td>Valeur</td></tr>';
print '<tr class="impair"><td width="50%">Th<54>me</td><td>' . MAIN_THEME . '</td></tr>';
print '<tr class="pair"><td>Longueur maximum des listes</td><td>' . SIZE_LISTE_LIMIT . '</td></tr>';
print '<tr class="impair"><td width="50%">Gestionnaire du menu du haut</td><td>';
$filelib=eregi_replace('\.php$','',MAIN_MENU_BARRETOP);
print $filelib;
print '</td></tr>';
print '<tr class="pair"><td width="50%">Langue par d<>faut <20> utiliser (code langue)</td><td>' . MAIN_LANG_DEFAULT . '</td></tr>';
print '<tr class="impair"><td>Afficher zone de recherche Contacts dans le menu gauche</td><td>' . (MAIN_SEARCHFORM_CONTACT?"oui":"non") . '</td></tr>';
print '<tr class="pair"><td>Afficher zone de recherche Soci<63>t<EFBFBD>s dans le menu gauche</td><td>' . (MAIN_SEARCHFORM_SOCIETE?"oui":"non") . '</td></tr>';
print '<tr class="impair"><td width="50%">Message du jour</td><td>' . stripslashes(nl2br(MAIN_MOTD)) . '</td></tr>';
print '</table><br>';
print '<div class="tabsAction">';
print '<a class="tabAction" href="ihm.php?action=edit">Editer</a>';
print '</div>';
}
llxFooter("<em>Derni&egrave;re modification $Date$ r&eacute;vision $Revision$</em>");
?>