first reimport from platal
[platal.git] / include / validations / orange.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2004 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 OrangeReq
23
24 class OrangeReq extends Validate
25 {
26 // {{{ properties
27
28 var $unique = true;
29
30 var $promo;
31 var $promo_sortie;
32
33 var $rules = "A priori accepter (la validation sert à repousser les
34 petits malins). Refuse si tu connais la personne et que tu es sure
35 qu'elle n'est pas orange.";
36
37 // }}}
38 // {{{ constructor
39
40 function OrangeReq($_uid, $_sortie)
41 {
42 global $globals;
43 $this->Validate($_uid, true, 'orange');
44 $this->promo_sortie = $_sortie;
45 $res = $globals->xdb->query("SELECT promo FROM auth_user_md5 WHERE user_id = {?}", $_uid);
46 $this->promo = $res->fetchOneCell();
47 }
48
49 // }}}
50 // {{{ function get_request()
51
52 function get_request($uid)
53 {
54 return parent::get_request($uid,'orange');
55 }
56
57 // }}}
58 // {{{ function formu()
59
60 function formu()
61 { return 'include/form.valid.orange.tpl'; }
62
63 // }}}
64 // {{{ function _mail_subj()
65
66 function _mail_subj()
67 {
68 return "[Polytechnique.org/ORANGE] Changement de nom de promo de sortie";
69 }
70
71 // }}}
72 // {{{ function _mail_body
73
74 function _mail_body($isok)
75 {
76 global $globals;
77 if ($isok) {
78 $res = " La demande de changement de promo de sortie que tu as demandée vient d'être effectuée.";
79 return $res;
80 } else {
81 return " La demande de changement de promo de sortie tu avais faite a été refusée.";
82 }
83 }
84
85 // }}}
86 // {{{ function commit()
87
88 function commit()
89 {
90 global $globals;
91
92 $globals->xdb->execute("UPDATE auth_user_md5 set promo_sortie={?} WHERE user_id={?}",$this->promo_sortie ,$this->uid);
93 return true;
94 }
95
96 // }}}
97 }
98 // }}}
99
100 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
101 ?>