Move profile/edit javascript in .js files and activate PlWizard eye-candies
[platal.git] / modules / profile / decos.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2007 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 ProfileDeco implements ProfileSetting
23 {
24 public function value(ProfilePage &$page, $field, $value, &$success)
25 {
26 $success = true;
27 if (is_null($value)) {
28 // Fetch already attributed medals
29 $res = XDB::iterRow("SELECT m.id AS id, s.gid AS grade
30 FROM profile_medals_sub AS s
31 INNER JOIN profile_medals AS m ON ( s.mid = m.id )
32 WHERE s.uid = {?}",
33 S::i('uid'));
34 $value = array();
35 while (list($id, $grade) = $res->next()) {
36 $value[$id] = array('grade' => $grade,
37 'valid' => '1');
38 }
39
40 // Fetch not yet validated medals
41 require_once('validations.inc.php');
42 $medals = Validate::get_typed_requests(S::i('uid'), 'medal');
43 foreach ($medals as &$medal) {
44 $value[$medal->mid] = array('grade' => $medal->gid,
45 'valid' => '0');
46 }
47 } else if (!is_array($value)) {
48 $value = array();
49 }
50 ksort($value);
51 return $value;
52 }
53
54 public function save(ProfilePage &$page, $field, $value)
55 {
56 require_once('validations.inc.php');
57
58 $orig =& $page->orig[$field];
59
60 // Remove old ones
61 foreach ($orig as $id=>&$val) {
62 if (!isset($value[$id]) || $val['grade'] != $value[$id]['grade']) {
63 if ($val['valid']) {
64 XDB::execute("DELETE FROM profile_medals_sub
65 WHERE uid = {?} AND mid = {?}",
66 S::i('uid'), $id);
67 } else {
68 $req = MedalReq::get_request(S::i('uid'), $id);
69 if ($req) {
70 $req->clean();
71 }
72 }
73 }
74 }
75
76 // Add new ones
77 foreach ($value as $id=>&$val) {
78 if (!isset($orig[$id]) || $orig[$id]['grade'] != $val['grade']) {
79 $req = new MedalReq(S::i('uid'), $id, $val['grade']);
80 $req->submit();
81 }
82 }
83 }
84 }
85
86 class ProfileDecos extends ProfilePage
87 {
88 protected $pg_template = 'profile/deco.tpl';
89
90 public function __construct(PlWizard &$wiz)
91 {
92 parent::__construct($wiz);
93 $this->settings['medals'] = new ProfileDeco();
94 $this->settings['medals_pub'] = new ProfilePub();
95 }
96
97 protected function fetchData()
98 {
99 $res = XDB::query("SELECT profile_medals_pub
100 FROM auth_user_quick
101 WHERE user_id = {?}",
102 S::i('uid'));
103 $this->values['medals_pub'] = $res->fetchOneCell();
104 parent::fetchData();
105 }
106
107 protected function saveData()
108 {
109 parent::saveData();
110 if ($this->changed['medals_pub']) {
111 XDB::execute("UPDATE auth_user_quick
112 SET profile_medals_pub = {?}
113 WHERE user_id = {?}",
114 $this->values['medals_pub'], S::i('uid'));
115 }
116 }
117
118 public function prepare(PlatalPage &$page, $id)
119 {
120 parent::prepare($page, $id);
121 $res = XDB::iterator("SELECT *, FIND_IN_SET('validation', flags) AS validate
122 FROM profile_medals
123 ORDER BY type, text");
124 $mlist = array();
125 while ($tmp = $res->next()) {
126 $mlist[$tmp['type']][] = $tmp;
127 }
128 $page->assign('medal_list', $mlist);
129 $trad = Array('ordre' => 'Ordres',
130 'croix' => 'Croix',
131 'militaire' => 'Médailles militaires',
132 'honneur' => 'Médailles d\'honneur',
133 'resistance' => 'Médailles de la résistance',
134 'prix' => 'Prix');
135 $page->assign('trad', $trad);
136 }
137 }
138
139 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
140 ?>