remove smarty {version} function, we have {#globals.version#} for it !!!
[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 // {{{ function _mail_subj
57
58 function _mail_subj()
59 {
60 return "[Polytechnique.org/EVENEMENTS] Proposition d'événement";
61 }
62
63 // }}}
64 // {{{ function _mail_body
65
66 function _mail_body($isok)
67 {
68 if ($isok) {
69 return " L'annonce que tu avais proposée ({$this->titre}) vient d'être validée.";
70 } else {
71 return " L'annonce que tu avais proposée ({$this->titre}) a été refusée.";
72 }
73 }
74
75 // }}}
76 // {{{ function commit()
77
78 function commit()
79 {
80 return XDB::execute(
81 "INSERT INTO evenements
82 SET user_id = {?}, creation_date=NOW(), titre={?}, texte={?},
83 peremption={?}, promo_min={?}, promo_max={?}, flags=CONCAT(flags,',valide')",
84 $this->uid, $this->titre, $this->texte,
85 $this->peremption, $this->pmin, $this->pmax);
86 }
87
88 // }}}
89 }
90
91 // }}}
92
93 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
94 ?>