2004-10-19 20:58:50 +02:00
|
|
|
<?php
|
2005-04-11 19:21:47 +02:00
|
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2010-03-26 23:00:58 +01:00
|
|
|
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
2009-04-27 22:37:50 +02:00
|
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
2003-02-10 17:19:46 +01:00
|
|
|
*
|
|
|
|
|
* 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
|
2011-08-01 00:21:57 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-02-10 17:19:46 +01:00
|
|
|
*/
|
2004-08-29 14:01:58 +02:00
|
|
|
|
2005-04-11 19:21:47 +02:00
|
|
|
/**
|
2009-06-29 15:45:56 +02:00
|
|
|
* \file htdocs/admin/const.php
|
|
|
|
|
* \ingroup setup
|
2010-04-18 16:37:59 +02:00
|
|
|
* \brief Admin page to define miscellaneous constants
|
2009-02-18 17:48:27 +01:00
|
|
|
*/
|
2004-08-29 14:01:58 +02:00
|
|
|
|
2010-03-01 10:20:41 +01:00
|
|
|
require("../main.inc.php");
|
2011-10-24 11:25:54 +02:00
|
|
|
require_once(DOL_DOCUMENT_ROOT."/core/lib/admin.lib.php");
|
2003-02-10 17:19:46 +01:00
|
|
|
|
2004-08-29 14:01:58 +02:00
|
|
|
$langs->load("admin");
|
|
|
|
|
|
2009-05-15 12:27:38 +02:00
|
|
|
if (!$user->admin)
|
|
|
|
|
accessforbidden();
|
2009-12-18 15:34:25 +01:00
|
|
|
//var_dump($_POST);
|
2003-02-10 17:19:46 +01:00
|
|
|
|
2003-03-03 18:39:23 +01:00
|
|
|
$typeconst=array('yesno','texte','chaine');
|
2004-02-21 00:40:13 +01:00
|
|
|
|
2009-12-21 01:06:04 +01:00
|
|
|
|
2009-06-29 15:45:56 +02:00
|
|
|
/*
|
|
|
|
|
* Actions
|
|
|
|
|
*/
|
2009-12-21 01:06:04 +01:00
|
|
|
|
2009-12-18 15:34:25 +01:00
|
|
|
if ($_POST["action"] == 'add')
|
2003-02-10 18:43:29 +01:00
|
|
|
{
|
2010-03-26 23:00:58 +01:00
|
|
|
$error=0;
|
|
|
|
|
|
|
|
|
|
if (empty($_POST["constname"]))
|
|
|
|
|
{
|
|
|
|
|
$mesg='<div class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("Name")).'</div>';
|
|
|
|
|
$error++;
|
|
|
|
|
}
|
2011-04-12 09:43:47 +02:00
|
|
|
if ($_POST["constvalue"]=='')
|
2010-03-26 23:00:58 +01:00
|
|
|
{
|
|
|
|
|
$mesg='<div class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("Value")).'</div>';
|
|
|
|
|
$error++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (! $error)
|
2003-02-23 19:16:12 +01:00
|
|
|
{
|
2010-03-26 23:00:58 +01:00
|
|
|
if (dolibarr_set_const($db, $_POST["constname"],$_POST["constvalue"],$typeconst[$_POST["consttype"]],1,isset($_POST["constnote"])?$_POST["constnote"]:'',$_POST["entity"]) < 0)
|
|
|
|
|
{
|
|
|
|
|
dolibarr_print_error($db);
|
|
|
|
|
}
|
2003-02-23 19:16:12 +01:00
|
|
|
}
|
2004-02-21 00:40:13 +01:00
|
|
|
}
|
2003-02-20 18:40:42 +01:00
|
|
|
|
2009-12-18 15:34:25 +01:00
|
|
|
if (($_POST["const"] && isset($_POST["update"]) && $_POST["update"] == $langs->trans("Modify")))
|
2004-02-21 00:40:13 +01:00
|
|
|
{
|
2009-12-18 15:34:25 +01:00
|
|
|
foreach($_POST["const"] as $const)
|
2003-02-23 19:16:12 +01:00
|
|
|
{
|
2009-12-18 15:34:25 +01:00
|
|
|
if ($const["check"])
|
|
|
|
|
{
|
|
|
|
|
if (dolibarr_set_const($db, $const["name"],$const["value"],$const["type"],1,$const["note"],$const["entity"]) < 0)
|
|
|
|
|
{
|
2010-03-26 23:00:58 +01:00
|
|
|
dolibarr_print_error($db);
|
2009-12-18 15:34:25 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-21 01:06:04 +01:00
|
|
|
// Delete several lines at once
|
2009-12-18 15:34:25 +01:00
|
|
|
if ($_POST["const"] && $_POST["delete"] && $_POST["delete"] == $langs->trans("Delete"))
|
|
|
|
|
{
|
|
|
|
|
foreach($_POST["const"] as $const)
|
|
|
|
|
{
|
2010-04-18 16:37:59 +02:00
|
|
|
if ($const["check"]) // Is checkbox checked
|
2009-12-18 15:34:25 +01:00
|
|
|
{
|
|
|
|
|
if (dolibarr_del_const($db, $const["rowid"], -1) < 0)
|
|
|
|
|
{
|
2010-03-26 23:00:58 +01:00
|
|
|
dolibarr_print_error($db);
|
2009-12-18 15:34:25 +01:00
|
|
|
}
|
|
|
|
|
}
|
2003-02-23 19:16:12 +01:00
|
|
|
}
|
2003-02-10 18:43:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-12-21 01:06:04 +01:00
|
|
|
// Delete line from delete picto
|
|
|
|
|
if ($_GET["action"] == 'delete')
|
|
|
|
|
{
|
|
|
|
|
if (dolibarr_del_const($db, $_GET["rowid"],$_GET["entity"]) < 0)
|
|
|
|
|
{
|
2010-03-26 23:00:58 +01:00
|
|
|
dolibarr_print_error($db);
|
2009-12-21 01:06:04 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-02-21 00:40:13 +01:00
|
|
|
|
2009-06-29 15:45:56 +02:00
|
|
|
/*
|
|
|
|
|
* View
|
|
|
|
|
*/
|
|
|
|
|
|
2010-03-26 23:00:58 +01:00
|
|
|
llxHeader('',$langs->trans("OtherSetup"));
|
2005-10-14 23:05:13 +02:00
|
|
|
|
2010-11-13 13:25:14 +01:00
|
|
|
// Add logic to show/hide buttons
|
2010-09-06 13:04:01 +02:00
|
|
|
if ($conf->use_javascript_ajax)
|
|
|
|
|
{
|
|
|
|
|
?>
|
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
|
|
|
jQuery(document).ready(function() {
|
|
|
|
|
jQuery("#updateconst").hide();
|
|
|
|
|
jQuery("#delconst").hide();
|
|
|
|
|
jQuery(".checkboxfordelete").click(function() {
|
|
|
|
|
jQuery("#delconst").show();
|
|
|
|
|
});
|
|
|
|
|
jQuery(".inputforupdate").keypress(function() {
|
2011-02-02 09:39:44 +01:00
|
|
|
var field_id = jQuery(this).attr("id");
|
|
|
|
|
var row_num = field_id.split("_");
|
2010-09-06 13:04:01 +02:00
|
|
|
jQuery("#updateconst").show();
|
2011-02-02 09:39:44 +01:00
|
|
|
jQuery("#check_" + row_num[1]).attr("checked",true);
|
2010-09-06 13:04:01 +02:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-12 17:32:57 +02:00
|
|
|
print_fiche_titre($langs->trans("OtherSetup"),'','setup');
|
2004-07-25 15:12:15 +02:00
|
|
|
|
2006-08-12 19:53:18 +02:00
|
|
|
print $langs->trans("ConstDesc")."<br>\n";
|
|
|
|
|
print "<br>\n";
|
|
|
|
|
|
2010-03-26 23:00:58 +01:00
|
|
|
if ($mesg) print $mesg;
|
2006-08-12 19:53:18 +02:00
|
|
|
|
2005-04-28 02:26:34 +02:00
|
|
|
print '<table class="noborder" width="100%">';
|
2004-07-25 15:12:15 +02:00
|
|
|
print '<tr class="liste_titre">';
|
2004-07-25 19:43:23 +02:00
|
|
|
print '<td>'.$langs->trans("Name").'</td>';
|
|
|
|
|
print '<td>'.$langs->trans("Value").'</td>';
|
2009-10-29 00:54:56 +01:00
|
|
|
print '<td>'.$langs->trans("Comment").'</td>';
|
2011-08-21 12:01:36 +02:00
|
|
|
if (! empty($conf->multicompany->enabled) && !$user->entity) print '<td>'.$langs->trans("Entity").'</td>';
|
2007-02-04 22:23:58 +01:00
|
|
|
print '<td align="center">'.$langs->trans("Action").'</td>';
|
2004-07-25 15:12:15 +02:00
|
|
|
print "</tr>\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$form = new Form($db);
|
|
|
|
|
|
2004-08-05 03:44:51 +02:00
|
|
|
|
2010-11-13 13:25:14 +01:00
|
|
|
// Line to add new record
|
2005-04-28 02:42:34 +02:00
|
|
|
$var=false;
|
2009-12-21 01:06:04 +01:00
|
|
|
print "\n";
|
2011-02-02 08:04:30 +01:00
|
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
|
2009-05-17 10:01:54 +02:00
|
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
2004-08-05 03:44:51 +02:00
|
|
|
print '<input type="hidden" name="action" value="add">';
|
|
|
|
|
|
2011-02-02 08:04:30 +01:00
|
|
|
print '<tr '.$bc[$var].'><td><input type="text" class="flat" size="24" name="constname" value=""></td>'."\n";
|
2004-08-05 03:44:51 +02:00
|
|
|
print '<td>';
|
2009-02-18 17:48:27 +01:00
|
|
|
print '<input type="text" class="flat" size="30" name="constvalue" value="">';
|
2004-08-05 03:44:51 +02:00
|
|
|
print '</td><td>';
|
2009-02-18 17:48:27 +01:00
|
|
|
print '<input type="text" class="flat" size="40" name="constnote" value="">';
|
2009-04-16 10:23:00 +02:00
|
|
|
print '</td>';
|
2009-12-18 15:34:25 +01:00
|
|
|
// Limit to superadmin
|
2011-08-21 12:01:36 +02:00
|
|
|
if (! empty($conf->multicompany->enabled) && !$user->entity)
|
2009-04-16 10:23:00 +02:00
|
|
|
{
|
|
|
|
|
print '<td>';
|
|
|
|
|
print '<input type="text" class="flat" size="1" name="entity" value="'.$conf->entity.'">';
|
|
|
|
|
print '</td>';
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
print '<input type="hidden" name="entity" value="'.$conf->entity.'">';
|
|
|
|
|
}
|
|
|
|
|
print '<td align="center">';
|
2009-12-21 01:06:04 +01:00
|
|
|
print '<input type="submit" class="button" value="'.$langs->trans("Add").'" name="Button">';
|
2004-08-05 03:44:51 +02:00
|
|
|
print "</td>\n";
|
|
|
|
|
print '</tr>';
|
2007-02-04 22:23:58 +01:00
|
|
|
|
2004-08-05 03:44:51 +02:00
|
|
|
print '</form>';
|
2009-12-21 01:06:04 +01:00
|
|
|
print "\n";
|
2004-08-05 03:44:51 +02:00
|
|
|
|
2010-04-18 16:37:59 +02:00
|
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
|
2009-12-18 15:34:25 +01:00
|
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
2004-08-05 03:44:51 +02:00
|
|
|
|
2011-09-14 23:50:17 +02:00
|
|
|
// Show constants
|
2009-06-27 09:43:15 +02:00
|
|
|
$sql = "SELECT";
|
|
|
|
|
$sql.= " rowid";
|
2009-12-23 02:12:47 +01:00
|
|
|
$sql.= ", ".$db->decrypt('name')." as name";
|
|
|
|
|
$sql.= ", ".$db->decrypt('value')." as value";
|
2009-12-18 15:34:25 +01:00
|
|
|
$sql.= ", type";
|
2009-06-27 09:43:15 +02:00
|
|
|
$sql.= ", note";
|
|
|
|
|
$sql.= ", entity";
|
|
|
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."const";
|
2009-12-18 15:34:25 +01:00
|
|
|
$sql.= " WHERE entity IN (".$user->entity.",".$conf->entity.")";
|
2010-12-19 01:00:28 +01:00
|
|
|
if ($user->entity || empty($conf->multicompany->enabled)) $sql.= " AND visible = 1";
|
2009-12-18 15:34:25 +01:00
|
|
|
$sql.= " ORDER BY entity, name ASC";
|
2009-06-27 09:43:15 +02:00
|
|
|
|
2009-05-07 01:30:49 +02:00
|
|
|
dol_syslog("Const::listConstant sql=".$sql);
|
2003-02-10 17:19:46 +01:00
|
|
|
$result = $db->query($sql);
|
2009-02-18 17:48:27 +01:00
|
|
|
if ($result)
|
2003-02-10 17:19:46 +01:00
|
|
|
{
|
2009-02-18 17:48:27 +01:00
|
|
|
$num = $db->num_rows($result);
|
|
|
|
|
$i = 0;
|
|
|
|
|
$var=false;
|
2003-02-10 18:43:29 +01:00
|
|
|
|
2009-02-18 17:48:27 +01:00
|
|
|
while ($i < $num)
|
2003-02-10 18:43:29 +01:00
|
|
|
{
|
2009-02-18 17:48:27 +01:00
|
|
|
$obj = $db->fetch_object($result);
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
2009-05-07 01:30:49 +02:00
|
|
|
print "\n";
|
2009-12-18 15:34:25 +01:00
|
|
|
print '<input type="hidden" name="const['.$i.'][rowid]" value="'.$obj->rowid.'">';
|
|
|
|
|
print '<input type="hidden" name="const['.$i.'][name]" value="'.$obj->name.'">';
|
|
|
|
|
print '<input type="hidden" name="const['.$i.'][type]" value="'.$obj->type.'">';
|
2009-02-18 17:48:27 +01:00
|
|
|
|
2011-02-02 08:04:30 +01:00
|
|
|
print '<tr '.$bc[$var].'><td>'.$obj->name.'</td>'."\n";
|
2009-02-18 17:48:27 +01:00
|
|
|
|
|
|
|
|
// Value
|
|
|
|
|
print '<td>';
|
2011-02-02 08:04:30 +01:00
|
|
|
print '<input type="text" id="value_'.$i.'" class="flat inputforupdate" size="30" name="const['.$i.'][value]" value="'.htmlspecialchars($obj->value).'"';
|
2009-12-21 01:06:04 +01:00
|
|
|
print '>';
|
2009-02-18 17:48:27 +01:00
|
|
|
print '</td><td>';
|
|
|
|
|
|
|
|
|
|
// Note
|
2011-02-02 08:04:30 +01:00
|
|
|
print '<input type="text" id="note_'.$i.'"class="flat inputforupdate" size="40" name="const['.$i.'][note]" value="'.htmlspecialchars($obj->note,1).'"';
|
2009-12-21 01:06:04 +01:00
|
|
|
print '>';
|
2009-04-16 10:23:00 +02:00
|
|
|
print '</td>';
|
2009-05-07 01:30:49 +02:00
|
|
|
|
2009-12-18 15:34:25 +01:00
|
|
|
// Entity limit to superadmin
|
2011-08-21 12:01:36 +02:00
|
|
|
if (! empty($conf->multicompany->enabled) && !$user->entity)
|
2009-04-16 10:23:00 +02:00
|
|
|
{
|
|
|
|
|
print '<td>';
|
2009-12-18 15:34:25 +01:00
|
|
|
print '<input type="text" class="flat" size="1" name="const['.$i.'][entity]" value="'.$obj->entity.'">';
|
2009-04-16 10:23:00 +02:00
|
|
|
print '</td>';
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2009-12-18 15:34:25 +01:00
|
|
|
print '<input type="hidden" name="const['.$i.'][entity]" value="'.$obj->entity.'">';
|
2009-04-16 10:23:00 +02:00
|
|
|
}
|
2009-05-07 01:30:49 +02:00
|
|
|
|
2009-04-16 10:23:00 +02:00
|
|
|
print '<td align="center">';
|
2010-03-26 23:00:58 +01:00
|
|
|
if ($conf->use_javascript_ajax)
|
2009-12-21 01:06:04 +01:00
|
|
|
{
|
2011-02-02 09:39:44 +01:00
|
|
|
print '<input type="checkbox" class="flat checkboxfordelete" id="check_'.$i.'" name="const['.$i.'][check]" value="1">';
|
2009-12-21 01:06:04 +01:00
|
|
|
print ' ';
|
|
|
|
|
}
|
2009-12-21 07:06:29 +01:00
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
print '<a href="const.php?rowid='.$obj->rowid.'&entity='.$obj->entity.'&action=delete">'.img_delete().'</a>';
|
|
|
|
|
}
|
2009-12-21 01:06:04 +01:00
|
|
|
|
2009-02-18 17:48:27 +01:00
|
|
|
print "</td></tr>\n";
|
|
|
|
|
|
2009-05-07 01:30:49 +02:00
|
|
|
print "\n";
|
2009-02-18 17:48:27 +01:00
|
|
|
$i++;
|
2003-02-10 18:43:29 +01:00
|
|
|
}
|
2003-02-10 17:19:46 +01:00
|
|
|
}
|
2003-02-20 18:40:42 +01:00
|
|
|
|
2004-07-25 15:12:15 +02:00
|
|
|
|
2003-02-10 17:19:46 +01:00
|
|
|
print '</table>';
|
|
|
|
|
|
2009-12-21 01:06:04 +01:00
|
|
|
if ($conf->use_javascript_ajax)
|
|
|
|
|
{
|
|
|
|
|
print '<br>';
|
2010-09-06 13:04:01 +02:00
|
|
|
print '<div id="updateconst" align="right">';
|
2009-12-21 01:06:04 +01:00
|
|
|
print '<input type="submit" name="update" class="button" value="'.$langs->trans("Modify").'">';
|
|
|
|
|
print '</div>';
|
2010-09-06 13:04:01 +02:00
|
|
|
print '<div id="delconst" align="right">';
|
2009-12-21 01:06:04 +01:00
|
|
|
print '<input type="submit" name="delete" class="button" value="'.$langs->trans("Delete").'">';
|
|
|
|
|
print '</div>';
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-18 15:34:25 +01:00
|
|
|
print "</form>\n";
|
|
|
|
|
|
|
|
|
|
|
2003-02-10 17:19:46 +01:00
|
|
|
$db->close();
|
|
|
|
|
|
2011-08-27 16:24:16 +02:00
|
|
|
llxFooter();
|
2003-02-10 17:19:46 +01:00
|
|
|
?>
|