mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-05 17:18:13 +01:00
246 lines
8.5 KiB
PHP
246 lines
8.5 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
|
|
* Copyright (C) 2004-2009 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.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/adherents/options.php
|
|
* \ingroup member
|
|
* \brief Page de configuratin des champs optionnels
|
|
* \version $Id$
|
|
*/
|
|
|
|
require("../main.inc.php");
|
|
require(DOL_DOCUMENT_ROOT."/adherents/class/adherent_options.class.php");
|
|
|
|
$langs->load("members");
|
|
|
|
$adho = new AdherentOptions($db);
|
|
$form = new Form($db);
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if ($_POST["action"] == 'add' && $user->rights->adherent->configurer)
|
|
{
|
|
if ($_POST["button"] != $langs->trans("Cancel"))
|
|
{
|
|
// Type et taille non encore pris en compte => varchar(255)
|
|
if (isset($_POST["attrname"]) && preg_match("/^\w[a-zA-Z0-9-_]*$/",$_POST['attrname']))
|
|
{
|
|
$adho->create($_POST['attrname'],$_POST['type'],$_POST['size']);
|
|
if (isset($_POST['label']))
|
|
{
|
|
$adho->create_label($_POST['attrname'],$_POST['label'],$_POST['type'],$_POST['pos'],$_POST['size']);
|
|
}
|
|
Header("Location: ".$_SERVER["PHP_SELF"]);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$langs->load("errors");
|
|
$mesg=$langs->trans("ErrorFieldCanNotContainSpecialCharacters",$langs->transnoentities("AttributeCode"));
|
|
$_GET["action"] = 'create';
|
|
}
|
|
}
|
|
}
|
|
|
|
// Rename field
|
|
if ($_POST["action"] == 'update' && $user->rights->adherent->configurer)
|
|
{
|
|
if ($_POST["button"] != $langs->trans("Cancel"))
|
|
{
|
|
if (isset($_POST["attrname"]) && preg_match("/^\w[a-zA-Z0-9-_]*$/",$_POST['attrname']))
|
|
{
|
|
$adho->update($_POST['attrname'],$_POST['type'],$_POST['size']);
|
|
if (isset($_POST['label']))
|
|
{
|
|
$adho->update_label($_POST['attrname'],$_POST['label'],$_POST['type'],$_POST['size']);
|
|
}
|
|
Header("Location: ".$_SERVER["PHP_SELF"]);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$langs->load("errors");
|
|
$mesg=$langs->trans("ErrorFieldCanNotContainSpecialCharacters",$langs->transnoentities("AttributeCode"));
|
|
}
|
|
}
|
|
}
|
|
|
|
# Suppression attribut
|
|
if ($_GET["action"] == 'delete' && $user->rights->adherent->configurer)
|
|
{
|
|
if(isset($_GET["attrname"]) && preg_match("/^\w[a-zA-Z0-9-_]*$/",$_GET["attrname"]))
|
|
{
|
|
$adho->delete($_GET["attrname"]);
|
|
Header("Location: ".$_SERVER["PHP_SELF"]);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$langs->load("errors");
|
|
$mesg=$langs->trans("ErrorFieldCanNotContainSpecialCharacters",$langs->transnoentities("AttributeCode"));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader('',$langs->trans("OptionalFieldsSetup"),'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros');
|
|
|
|
|
|
print_fiche_titre($langs->trans("OptionalFieldsSetup"));
|
|
|
|
if ($mesg) print '<div class="error">'.$mesg.'</div><br>';
|
|
|
|
// Load attribute_label
|
|
$adho->fetch_name_optionals_label();
|
|
|
|
print "<table summary=\"listofattributes\" class=\"noborder\" width=\"100%\">";
|
|
|
|
print '<tr class="liste_titre">';
|
|
print '<td>'.$langs->trans("AttributeCode").'</td>';
|
|
print '<td>'.$langs->trans("Label").'</td>';
|
|
print '<td>'.$langs->trans("Type").'</td>';
|
|
print '<td align="right">'.$langs->trans("Size").'</td>';
|
|
print '<td width="80"> </td>';
|
|
print "</tr>\n";
|
|
|
|
$var=True;
|
|
foreach($adho->attribute_type as $key => $value)
|
|
{
|
|
$var=!$var;
|
|
print "<tr $bc[$var]>";
|
|
print "<td>".$key."</td>\n";
|
|
print "<td>".$adho->attribute_label[$key]."</td>\n";
|
|
print "<td>".$adho->attribute_type[$key]."</td>\n";
|
|
print '<td align="right">'.$adho->attribute_size[$key]."</td>\n";
|
|
print '<td align="right"><a href="options.php?action=edit&attrname='.$key.'">'.img_edit().'</a>';
|
|
print " <a href=\"options.php?action=delete&attrname=$key\">".img_delete()."</a></td>\n";
|
|
print "</tr>";
|
|
// $i++;
|
|
}
|
|
|
|
print "</table>";
|
|
|
|
/*
|
|
* Barre d'actions
|
|
*
|
|
*/
|
|
if ($_GET["action"] != 'create' && $_GET["action"] != 'edit')
|
|
{
|
|
print '<div class="tabsAction">';
|
|
print "<a class=\"butAction\" href=\"options.php?action=create\">".$langs->trans("NewAttribute")."</a>";
|
|
print "</div>";
|
|
}
|
|
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Creation d'un champ optionnel
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
if ($_GET["action"] == 'create')
|
|
{
|
|
print "<br>";
|
|
print_titre($langs->trans('NewAttribute'));
|
|
|
|
print '<form action="options.php" method="post">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<table summary="listofattributes" class="border" width="100%">';
|
|
|
|
print '<input type="hidden" name="action" value="add">';
|
|
|
|
print '<tr><td>'.$langs->trans("Label").'</td><td class="valeur"><input type="text" name="label" size="40"></td></tr>';
|
|
print '<tr><td>'.$langs->trans("AttributeCode").' ('.$langs->trans("AlphaNumOnlyCharsAndNoSpace").')</td><td class="valeur"><input type="text" name="attrname" size="10"></td></tr>';
|
|
print '<tr><td>'.$langs->trans("Type").'</td><td class="valeur">';
|
|
print $form->selectarray('type',array('varchar'=>$langs->trans('String'),
|
|
'text'=>$langs->trans('Text'),
|
|
'int'=>$langs->trans('Int'),
|
|
'date'=>$langs->trans('Date'),
|
|
'datetime'=>$langs->trans('DateAndTime')));
|
|
print '</td></tr>';
|
|
print '<tr><td>Taille</td><td><input type="text" name="size" size="5" value="255"></td></tr>';
|
|
|
|
print '<tr><td colspan="2" align="center"><input type="submit" name="button" class="button" value="'.$langs->trans("Save").'"> ';
|
|
print '<input type="submit" name="button" class="button" value="'.$langs->trans("Cancel").'"></td></tr>';
|
|
print "</form>\n";
|
|
print "</table>\n";
|
|
}
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Edition d'un champ optionnel */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
if ($_GET["attrname"] && $_GET["action"] == 'edit')
|
|
{
|
|
print "<br>";
|
|
print_titre($langs->trans("FieldEdition",$_GET["attrname"]));
|
|
|
|
/*
|
|
* formulaire d'edition
|
|
*/
|
|
print '<form method="post" action="options.php?attrname='.$_GET["attrname"].'">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="attrname" value="'.$_GET["attrname"].'">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
print '<table summary="listofattributes" class="border" width="100%">';
|
|
|
|
// Code
|
|
print '<tr>';
|
|
print '<td>'.$langs->trans("AttributeCode").'</td>';
|
|
print '<td class="valeur">'.$_GET["attrname"].' </td>';
|
|
print '</tr>';
|
|
// Label
|
|
print '<tr>';
|
|
print '<td>'.$langs->trans("Label").'</td><td class="valeur"><input type="text" name="label" size="40" value="'.$adho->attribute_label[$_GET["attrname"]].'"></td>';
|
|
print '</tr>';
|
|
$type=$adho->attribute_type[$_GET["attrname"]];
|
|
$size=$adho->attribute_size[$_GET["attrname"]];
|
|
print '<tr><td>'.$langs->trans("Type").'</td>';
|
|
print '<td class="valeur">';
|
|
$type2label=array('varchar'=>$langs->trans('String'),
|
|
'text'=>$langs->trans('Text'),
|
|
'int'=>$langs->trans('Int'),
|
|
'date'=>$langs->trans('Date'),
|
|
'datetime'=>$langs->trans('DateAndTime'));
|
|
//print $form->selectarray('type',$type2label,$type);
|
|
print $type2label[$type];
|
|
print '<input type="hidden" name="type" value="'.$type.'">';
|
|
print '</td></tr>';
|
|
|
|
print '<tr><td>'.$langs->trans("Size").'</td><td class="valeur"><input type="text" name="size" size="5" value="'.$size.'"></td></tr>';
|
|
print '<tr><td colspan="2" align="center"><input type="submit" class="button" value="'.$langs->trans("Save").'"> ';
|
|
print '<input type="submit" name="button" class="button" value="'.$langs->trans("Cancel").'"></td></tr>';
|
|
print '</table>';
|
|
print "</form>";
|
|
|
|
}
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|