PHP5-ize all base classes...
[platal.git] / include / validations / paiements.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
0337d704 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22// {{{ class PayReq
23
24class PayReq extends Validate
25{
26 // {{{ properties
27
28 var $titre;
29 var $site;
30
31 var $montant;
32 var $montant_min;
33 var $montant_max;
34
35 var $msg_reponse;
36 var $asso_id;
37 var $asso;
38 var $evt;
39 var $evt_intitule;
40
a7de4ef7 41 var $rules = "Laisser la validation à un trésorier";
0337d704 42 // }}}
43 // {{{ constructor
a3a049fc 44
45 function PayReq($_uid, $_intitule, $_site, $_montant, $_msg,
46 $_montantmin=0, $_montantmax=999, $_asso_id = 0,
47 $_evt = 0, $_stamp=0)
0337d704 48 {
0337d704 49 $this->Validate($_uid, false, 'paiements', $_stamp);
a3a049fc 50
0337d704 51 $this->titre = $_intitule;
52 $this->site = $_site;
53 $this->msg_reponse = $_msg;
54 $this->asso_id = $_asso_id;
55 $this->evt = $_evt;
56 $this->montant = $_montant;
57 $this->montant_min = $_montantmin;
58 $this->montant_max = $_montantmax;
59
60 if ($_asso_id) {
08cce2ff 61 $res = XDB::query("SELECT nom FROM groupex.asso WHERE id = {?}", $_asso_id);
0337d704 62 $this->asso = $res->fetchOneCell();
63 }
64 if ($_asso_id && $_evt) {
08cce2ff 65 $res = XDB::query("SELECT intitule FROM groupex.evenements WHERE asso_id = {?} AND eid = {?}", $_asso_id, $_evt);
0337d704 66 $this->evt_intitule = $res->fetchOneCell();
67 }
68 }
69
70 // }}}
b479e26b 71 // {{{ function same_event()
9193e8f7 72 static function same_event($evt, $asso_id)
b479e26b 73 {
74 $wevt = 's:3:"evt";s:'.strlen($evt+"").':"'.$evt.'"';
75 $wassoid = 's:7:"asso_id";s:'.strlen($asso_id + "").':"'.$asso_id.'"';
76 $where = "%".$wassoid."%".$wevt."%";
77 return $where;
78 }
79 // }}}
029e6327 80 // {{{ function submit()
81 // supprime les demandes de paiments pour le meme evenement
82 function submit()
83 {
029e6327 84 if ($this->evt)
85 {
08cce2ff 86 XDB::execute('DELETE FROM requests WHERE type={?} AND data LIKE {?}', 'paiements', PayReq::same_event($this->evt, $this->asso_id));
029e6327 87 }
88 Validate::submit();
89 }
90 // }}}
91 // {{{ function formu()
0337d704 92
93 function formu()
94 { return 'include/form.valid.paiements.tpl'; }
95
96 // }}}
6aa01fed 97 // {{{ function editor()
98
99 function editor()
100 {
101 return 'include/form.valid.edit-paiements.tpl';
102 }
103
104 // }}}
105 // {{{ function handle_editor()
106
107 function handle_editor()
108 {
109 $this->titre = Env::v('pay_titre');
110 $this->site = Env::v('pay_site');
111 $this->montant = Env::i('pay_montant');
112 $this->montant_min = Env::i('pay_montant_min');
113 $this->montant_max = Env::i('pay_montant_max');
114 $this->msg_reponse = Env::v('pay_msg_reponse');
115 return true;
116 }
117
118 // }}}
0337d704 119 // {{{ function _mail_subj
120
121 function _mail_subj()
122 {
a7de4ef7 123 return "[Polytechnique.org/Paiments] Demande de création de paiement {$this->titre}";
0337d704 124 }
125
126 // }}}
127 // {{{ function _mail_body
128
129 function _mail_body($isok)
130 {
131 if ($isok) {
a7de4ef7 132 return " Le paiement que tu avais demandé pour {$this->titre} vient d'être créé.".($this->evt?" Il a bien été associé à la gestion de l'événement du groupe":"");
0337d704 133 } else {
a7de4ef7 134 return " La demande que tu avais faite pour le paiement de {$this->intitule} a été refusée.";
0337d704 135 }
136 }
137
138 // }}}
139 // {{{ function commit()
140
141 function commit()
142 {
143 global $globals;
08cce2ff 144 $res = XDB::query("SELECT MAX(id) FROM paiement.paiements");
0337d704 145 $id = $res->fetchOneCell()+1;
08cce2ff 146 $ret = XDB::execute("INSERT INTO paiement.paiements VALUES
0337d704 147 ( {?}, {?}, {?}, '',
148 {?}, {?}, {?},
149 {?}, {?}, {?} )
150 ",
151 $id, $this->titre, $this->site,
152 $this->montant, $this->montant_min, $this->montant_max,
153 $this->bestalias."@".$globals->mail->domain, $this->msg_reponse, $this->asso_id);
154 if ($this->asso_id && $this->evt)
08cce2ff 155 $ret = XDB::execute("UPDATE groupex.evenements SET paiement_id = {?} WHERE asso_id = {?} AND eid = {?}", $id, $this->asso_id, $this->evt);
0337d704 156
157 return $ret;
158 }
159
160 // }}}
161}
162
163// }}}
164
a7de4ef7 165// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 166?>