e2e2987f687d9b7bc4152083c01870db44ed17c4
2 /***************************************************************************
3 * Copyright (C) 2003-2010 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
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. *
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. *
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 *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
22 // {{{ class OrangeReq
24 class OrangeReq
extends Validate
28 public $unique = true
;
34 public $rules = "À priori accepter (la validation sert à repousser les
35 petits malins). Refuse si tu connais la personne et que tu es sûr
36 qu'elle n'est pas orange.";
41 public function __construct(User
&$_user, $_newGradYear)
43 parent
::__construct($_user, true
, 'orange');
44 $this->newGradYear
= $_newGradYear;
45 $res = XDB
::query("SELECT entry_year, grad_year
46 FROM profile_education
47 WHERE pid = {?} AND FIND_IN_SET('primary', flags)", $this->user
->profile()->id());
48 $years = $res->fetchOneRow();
49 $this->entryYear
= $years[0];
50 $this->oldGradYear
= $years[1];
54 // {{{ function formu()
56 public function formu()
58 return 'include/form.valid.orange.tpl';
62 // {{{ function _mail_subj()
64 protected function _mail_subj()
66 return "[Polytechnique.org/ORANGE] Changement de promo de sortie";
70 // {{{ function _mail_body
72 protected function _mail_body($isok)
75 return " La demande de changement de promotion que tu as demandée vient d'être effectuée. "
76 . "Si tu le souhaites, tu peux maintenant modifier l'affichage de ta promotion sur le site sur la page suivante : "
77 . "https://www.polytechnique.org/profile/edit";
79 return " La demande de changement de promotion tu avais faite a été refusée.";
84 // {{{ function commit()
86 public function commit()
88 XDB
::execute("UPDATE profile_education
90 WHERE pid = {?} AND FIND_IN_SET('primary', flags)",
91 $this->newGradYear
, $this->user
->profile()->id());
99 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: