mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-13 13:01:27 +01:00
97 lines
2.6 KiB
PHP
97 lines
2.6 KiB
PHP
<?php
|
|
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004-2005 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$
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/user/admin/index.php
|
|
\ingroup setup
|
|
\brief Page de configuration du module sécurité
|
|
\version $Revision$
|
|
*/
|
|
|
|
require("./pre.inc.php");
|
|
|
|
$langs->load("users");
|
|
$langs->load("admin");
|
|
|
|
if (!$user->admin) accessforbidden();
|
|
|
|
|
|
|
|
if ($_POST["action"] == 'update' || $_POST["action"] == 'add')
|
|
{
|
|
if (! dolibarr_set_const($db, $_POST["constname"],$_POST["constvalue"],$typeconst[$_POST["consttype"]],0,isset($_POST["constnote"])?$_POST["constnote"]:''))
|
|
{
|
|
dolibarr_print_error($db);
|
|
}
|
|
else
|
|
{
|
|
Header("Location: index.php");
|
|
exit;
|
|
}
|
|
}
|
|
|
|
|
|
llxHeader();
|
|
|
|
$var=false;
|
|
|
|
$form = new Form($db);
|
|
$typeconst=array('yesno','texte','chaine');
|
|
|
|
print_titre($langs->trans("UserSetup"));
|
|
|
|
print "<br>";
|
|
|
|
print '<table class="noborder" width=\"100%\">';
|
|
print '<tr class="liste_titre">';
|
|
print '<td>'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td><td>'.$langs->trans("Description").'</td>';
|
|
print '<td> </td>';
|
|
print "</tr>\n";
|
|
|
|
print '<form action="index.php" method="POST">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
print '<input type="hidden" name="constname" value="USER_PASSWORD_GENERATED">';
|
|
print '<input type="hidden" name="consttype" value="yesno">';
|
|
|
|
print '<tr '.$bc[$var]."><td>USER_PASSWORD_GENERATED</td>\n";
|
|
|
|
print '<td>';
|
|
$form->selectyesnonum('constvalue',USER_PASSWORD_GENERATED);
|
|
print '</td><td>';
|
|
|
|
print '<input type="text" size="40" name="constnote" value="'.stripslashes(nl2br($obj->note)).'">';
|
|
print '</td><td>';
|
|
print '<input type="submit" value="'.$langs->trans("Modify").'" name="button" class="button"> ';
|
|
print "</td></tr>\n";
|
|
|
|
print '</form>';
|
|
|
|
|
|
print "</table>\n";
|
|
|
|
|
|
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
|
|
?>
|