* Copyright (C) 2003 Jean-Louis Bergamo * Copyright (C) 2004-2005 Laurent Destailleur * * 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/adherents/options.php \ingroup adherent \brief Page de configuratin des champs optionnels \version $Revision$ */ require("./pre.inc.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php"); $langs->load("members"); $adho = new AdherentOptions($db); $form = new Form($db); if ($_POST["action"] == 'add' && $user->admin) { 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']); } } Header("Location: ".$_SERVER["PHP_SELF"]); } if ($_POST["action"] == 'update' && $user->admin) { 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']); } } Header("Location: ".$_SERVER["PHP_SELF"]); } # Suppression attribut if ($_GET["action"] == 'delete' && $user->admin) { if(isset($_GET["attrname"]) && preg_match("/^\w[a-zA-Z0-9-]*$/",$_GET["attrname"])){ $adho->delete($_GET["attrname"]); } Header("Location: ".$_SERVER["PHP_SELF"]); } llxHeader(); print_titre($langs->trans("OptionalFieldsSetup")); print '
'; /* ************************************************************************** */ /* */ /* */ /* */ /* ************************************************************************** */ $array_options=$adho->fetch_name_optionals(); $array_label=$adho->fetch_name_optionals_label(); print ""; print ''; print ''; print ''; print ''; print "\n"; if (sizeof($array_options)>0) { $var=True; foreach($adho->attribute_name as $key => $value) { $var=!$var; print ""; print "\n"; print "\n"; print "\n"; print "\n"; print ""; // $i++; } } print "
'.$langs->trans("Label").''.$langs->trans("AttributeCode").''.$langs->trans("Type").' 
".$adho->attribute_label[$key]." $key$value".img_edit().""; print "  ".img_delete()."
"; /* * Barre d'actions * */ if ($_GET["action"] != 'create') { print '"; } /* ************************************************************************** */ /* */ /* Création d'un champ optionnel */ /* */ /* ************************************************************************** */ if ($_GET["action"] == 'create') { print "
"; print_titre($langs->trans('NewAttribute')); print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; print "
'.$langs->trans("Label").'
'.$langs->trans("AttributeCode").' ('.$langs->trans("AlphaNumOnlyCharsAndNoSpace").')
'.$langs->trans("Type").''; $form->select_array('type',array('varchar'=>$langs->trans('String'), 'text'=>$langs->trans('Text'), 'int'=>$langs->trans('Int'), 'date'=>$langs->trans('Date'), 'datetime'=>$langs->trans('DateAndTime'))); print '
Taille
  '; print '
\n"; } /* ************************************************************************** */ /* */ /* Edition d'un champ optionnel */ /* */ /* ************************************************************************** */ if ($_GET["attrname"] && $_GET["action"] == 'edit') { print_titre($langs->trans("FieldEdition",$_GET["attrname"])); /* * formulaire d'edition */ print '
'; print ''; print ''; print ''; print ''; print ''; list($type,$size)=preg_split('/\(|\)/',$adho->attribute_name[$_GET["attrname"]]); print ''; print ''; print ''; print '
'.$langs->trans("Label").'
'.$langs->trans("AttributeName").''.$_GET["attrname"].' 
'.$langs->trans("Type").''; $form->select_array('type',array('varchar'=>$langs->trans('String'), 'text'=>$langs->trans('Text'), 'int'=>$langs->trans('Int'), 'date'=>$langs->trans('Date'), 'datetime'=>$langs->trans('DateAndTime')),$type); print '
'.$langs->trans("Size").'
  '; print '
'; print "
"; } $db->close(); llxFooter('$Date$ - $Revision$'); ?>