Removes AX synchronisation from profile.
[platal.git] / include / validations / orange.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
8d84c630 3 * Copyright (C) 2003-2009 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 OrangeReq
23
24class OrangeReq extends Validate
25{
26 // {{{ properties
27
612a2d8a 28 public $unique = true;
0337d704 29
612a2d8a 30 public $promo_sortie;
eaf30d86 31
fb2c09c9
SJ
32 public $rules = "À priori accepter (la validation sert à repousser les
33 petits malins). Refuse si tu connais la personne et que tu es sûr
0337d704 34 qu'elle n'est pas orange.";
35
36 // }}}
37 // {{{ constructor
38
532c06cf 39 public function __construct(User &$_user, $_sortie)
0337d704 40 {
5daf68f6 41 parent::__construct($_user, true, 'orange');
0337d704 42 $this->promo_sortie = $_sortie;
fb2c09c9
SJ
43 $res = XDB::query("SELECT entry_year
44 FROM profile_education
45 WHERE uid = {?} AND FIND_IN_SET('primary', flags)", $_uid);
46 $this->promo = $res->fetchOneCell();
0337d704 47 }
48
49 // }}}
0337d704 50 // {{{ function formu()
51
612a2d8a 52 public function formu()
53 {
54 return 'include/form.valid.orange.tpl';
55 }
0337d704 56
57 // }}}
58 // {{{ function _mail_subj()
59
612a2d8a 60 protected function _mail_subj()
0337d704 61 {
83eb5585 62 return "[Polytechnique.org/ORANGE] Changement de promo de sortie";
0337d704 63 }
64
65 // }}}
66 // {{{ function _mail_body
67
612a2d8a 68 protected function _mail_body($isok)
0337d704 69 {
0337d704 70 if ($isok) {
fb2c09c9
SJ
71 return " La demande de changement de promotion de sortie que tu as demandée vient d'être effectuée. "
72 . "Si tu le souhaites, tu peux maintenant modifier l'affichage de ta promotion sur le site sur la page suivante : "
73 . "https://www.polytechnique.org/profile/edit";
0337d704 74 } else {
fb2c09c9 75 return " La demande de changement de promotion de sortie tu avais faite a été refusée.";
0337d704 76 }
77 }
78
79 // }}}
80 // {{{ function commit()
81
612a2d8a 82 public function commit()
0337d704 83 {
fb2c09c9
SJ
84 XDB::execute("UPDATE profile_education
85 SET grad_year = {?}
86 WHERE uid = {?} AND FIND_IN_SET('primary', flags)", $this->promo_sortie, $this->uid);
0337d704 87 return true;
88 }
89
90 // }}}
91}
92// }}}
93
a7de4ef7 94// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 95?>