Adds address edition in entreprise validation.
[platal.git] / include / validations / orange.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2009 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 public $unique = true;
29
30 public $oldGradYear;
31 public $newGradYear;
32 public $entryYear;
33
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.";
37
38 // }}}
39 // {{{ constructor
40
41 public function __construct(User &$_user, $_newGradYear)
42 {
43 parent::__construct($_user, true, 'orange');
44 $this->newGradYear = $_newGradYear;
45 $res = XDB::query("SELECT entry_year
46 FROM profile_education
47 WHERE uid = {?} AND FIND_IN_SET('primary', flags)", $this->user->id());
48 $this->entryYear = $res->fetchOneCell();
49 $this->oldGradYear = $this->entryYear + 3;
50 }
51
52 // }}}
53 // {{{ function formu()
54
55 public function formu()
56 {
57 return 'include/form.valid.orange.tpl';
58 }
59
60 // }}}
61 // {{{ function _mail_subj()
62
63 protected function _mail_subj()
64 {
65 return "[Polytechnique.org/ORANGE] Changement de promo de sortie";
66 }
67
68 // }}}
69 // {{{ function _mail_body
70
71 protected function _mail_body($isok)
72 {
73 if ($isok) {
74 return " La demande de changement de promotion de sortie que tu as demandée vient d'être effectuée. "
75 . "Si tu le souhaites, tu peux maintenant modifier l'affichage de ta promotion sur le site sur la page suivante : "
76 . "https://www.polytechnique.org/profile/edit";
77 } else {
78 return " La demande de changement de promotion de sortie tu avais faite a été refusée.";
79 }
80 }
81
82 // }}}
83 // {{{ function commit()
84
85 public function commit()
86 {
87 XDB::execute("UPDATE profile_education
88 SET grad_year = {?}
89 WHERE uid = {?} AND FIND_IN_SET('primary', flags)", $this->newGradYear, $this->user->id());
90 return true;
91 }
92
93 // }}}
94 }
95 // }}}
96
97 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
98 ?>