* * 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/admin/bank.php * \ingroup bank * \brief Page to setup the bank module * \version $Id$ */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php"); require_once(DOL_DOCUMENT_ROOT.'/compta/facture/facture.class.php'); $langs->load("admin"); $langs->load("companies"); $langs->load("bills"); $langs->load("other"); if (!$user->admin) accessforbidden(); $typeconst=array('yesno','texte','chaine'); /* * Actions */ if ($_POST["action"] == 'set_BANK_CHEQUERECEIPT_FREE_TEXT') { dolibarr_set_const($db, "BANK_CHEQUERECEIPT_FREE_TEXT",$_POST["BANK_CHEQUERECEIPT_FREE_TEXT"],'chaine',0,'',$conf->entity); } /* * view */ llxHeader("",""); $html=new Form($db); $linkback=''.$langs->trans("BackToModuleList").''; print_fiche_titre($langs->trans("BankSetupModule"),$linkback,'setup'); print '
'; print ''; print ''; print ''; print ''; print ''; print "\n"; $var=true; $var=! $var; print ''; print ''; print ''; print '\n"; print ''; /* $var=!$var; print ""; print ''; print ""; print '\n"; print ''; */ print '
'.$langs->trans("Parameter").'  
'; print $langs->trans("FreeLegalTextOnChequeReceipts").' ('.$langs->trans("AddCRIfTooLong").')
'; print ''; print '
'; print ''; print "
'; print $langs->trans("WatermarkOnDraftChequeReceipt").'
'; print ''; print '
'; print ''; print "
'; $db->close(); llxFooter('$Date$ - $Revision$'); ?>