Plugins  LAST
 All Data Structures Files Functions Variables Pages
bank_constant.php
Go to the documentation of this file.
1 <?php
2 /*
3  * This file is part of NOALYSS.
4  *
5  * NOALYSS is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * NOALYSS is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with NOALYSS; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19 /* $Revision$ */
20 
21 // Copyright (c) 2002 Author Dany De Bontridder dany@alchimerys.be
22 
23 /*!\file
24  * \brief contains all the constant for this plugin
25  */
26 
28 $adecimal=array(
29  array ('value'=>0,'label'=>' '),
30  array ('value'=>1,'label'=>','),
31  array ('value'=>2,'label'=>'.')
32  );
33 
34 $athousand=array(
35  array ('value'=>0,'label'=>' '),
36  array ('value'=>1,'label'=>','),
37  array ('value'=>2,'label'=>'.')
38  );
39 $aseparator=array(
40  array ('value'=>1,'label'=>','),
41  array ('value'=>2,'label'=>';')
42  );
43 $aformat_date=array(
44  array ('value'=>1,'label'=>'DD.MM.YYYY','format'=>'d.m.Y'),
45  array ('value'=>2,'label'=>'DD/MM/YYYY','format'=>'d/m/Y'),
46  array ('value'=>3,'label'=>'DD-MM-YYYY','format'=>'d-m-Y'),
47  array ('value'=>4,'label'=>'DD.MM.YY','format'=>'d.m.y'),
48  array ('value'=>5,'label'=>'DD/MM/YY','format'=>'d/m/y'),
49  array ('value'=>6,'label'=>'DD-MM-YY','format'=>'d-m-y'),
50  array ('value'=>7,'label'=>'YYYY-MM-DD','format'=>'Y.m.d')
51  );
52 $aheader=array(
53  array('value'=>-1,'label'=>_('-- Non utilisé --')),
54  array('value'=>0,'label'=>_('Date')),
55  array('value'=>1,'label'=>_('Montant')),
56  array('value'=>2,'label'=>_('Libelle')),
57  array('value'=>3,'label'=>_('Numéro opération')),
58  array('value'=>4,'label'=>_('Tiers')),
59  array('value'=>5,'label'=>_('Info supplémentaire'))
60  );
61 ?>
global $aformat_date
global $aseparator
global $adecimal
global $athousand
global $aheader