01c56582d031919e68cf695e8f9f7905ad6fa03a
[platal.git] / include / validations / evts.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2006 Polytechnique.org *
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 EvtReq
23
24 class EvtReq extends Validate
25 {
26 // {{{ properties
27
28 var $evtid;
29 var $titre;
30 var $texte;
31 var $pmin;
32 var $pmax;
33 var $peremption;
34 var $comment;
35
36 // }}}
37 // {{{ constructor
38
39 function EvtReq($_titre, $_texte, $_pmin, $_pmax, $_peremption, $_comment, $_uid) {
40 $this->Validate($_uid, false, 'evts');
41 $this->titre = $_titre;
42 $this->texte = $_texte;
43 $this->pmin = $_pmin;
44 $this->pmax = $_pmax;
45 $this->peremption = $_peremption;
46 $this->comment = $_comment;
47 }
48
49 // }}}
50 // {{{ function formu()
51
52 function formu()
53 { return 'include/form.valid.evts.tpl'; }
54
55 // }}}
56 // {{{ functon editor()
57
58 function editor()
59 { return 'include/form.valid.edit-evts.tpl'; }
60
61 // }}}
62 // {{{ function handle_editor()
63
64 function handle_editor()
65 {
66 $this->titre = Env::v('titre');
67 $this->texte = Env::v('texte');
68 $this->pmin = Env::i('promo_min');
69 $this->pmax = Env::i('promo_max');
70 $this->peremption = Env::v('peremption');
71 return true;
72 }
73
74 // }}}
75 // {{{ function _mail_subj
76
77 function _mail_subj()
78 {
79 return "[Polytechnique.org/EVENEMENTS] Proposition d'événement";
80 }
81
82 // }}}
83 // {{{ function _mail_body
84
85 function _mail_body($isok)
86 {
87 if ($isok) {
88 return " L'annonce que tu avais proposée ({$this->titre}) vient d'être validée.";
89 } else {
90 return " L'annonce que tu avais proposée ({$this->titre}) a été refusée.";
91 }
92 }
93
94 // }}}
95 // {{{ function commit()
96
97 function commit()
98 {
99 return XDB::execute(
100 "INSERT INTO evenements
101 SET user_id = {?}, creation_date=NOW(), titre={?}, texte={?},
102 peremption={?}, promo_min={?}, promo_max={?}, flags=CONCAT(flags,',valide')",
103 $this->uid, $this->titre, $this->texte,
104 $this->peremption, $this->pmin, $this->pmax);
105 }
106
107 // }}}
108 }
109
110 // }}}
111
112 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
113 ?>