Remove deprecated stuff, cleanup code.
[platal.git] / modules / profile.php
CommitLineData
7d8b17cb 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 Polytechnique.org *
7d8b17cb 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
22class ProfileModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
2398e553
SJ
27 'photo' => $this->make_hook('photo', AUTH_PUBLIC),
28 'photo/change' => $this->make_hook('photo_change', AUTH_MDP),
e49018a7 29
2398e553
SJ
30 'fiche.php' => $this->make_hook('fiche', AUTH_PUBLIC),
31 'profile' => $this->make_hook('profile', AUTH_PUBLIC),
32 'profile/private' => $this->make_hook('profile', AUTH_COOKIE),
33 'profile/ax' => $this->make_hook('ax', AUTH_COOKIE, 'admin'),
34 'profile/edit' => $this->make_hook('p_edit', AUTH_MDP),
35 'profile/ajax/address' => $this->make_hook('ajax_address', AUTH_COOKIE, 'user', NO_AUTH),
36 'profile/ajax/tel' => $this->make_hook('ajax_tel', AUTH_COOKIE, 'user', NO_AUTH),
37 'profile/ajax/edu' => $this->make_hook('ajax_edu', AUTH_COOKIE, 'user', NO_AUTH),
38 'profile/ajax/medal' => $this->make_hook('ajax_medal', AUTH_COOKIE, 'user', NO_AUTH),
39 'profile/networking' => $this->make_hook('networking', AUTH_PUBLIC),
40 'profile/ajax/job' => $this->make_hook('ajax_job', AUTH_COOKIE, 'user', NO_AUTH),
41 'profile/ajax/secteur' => $this->make_hook('ajax_secteur', AUTH_COOKIE, 'user', NO_AUTH),
c7139c07 42 'profile/ajax/ssecteur' => $this->make_hook('ajax_ssecteur', AUTH_COOKIE, 'user', NO_AUTH),
2398e553
SJ
43 'profile/ajax/skill' => $this->make_hook('ajax_skill', AUTH_COOKIE, 'user', NO_AUTH),
44 'profile/ajax/searchname' => $this->make_hook('ajax_searchname', AUTH_COOKIE, 'user', NO_AUTH),
f711b03f 45 'javascript/education.js' => $this->make_hook('education_js', AUTH_COOKIE),
2398e553
SJ
46 'javascript/grades.js' => $this->make_hook('grades_js', AUTH_COOKIE),
47 'profile/medal' => $this->make_hook('medal', AUTH_PUBLIC),
48 'profile/orange' => $this->make_hook('p_orange', AUTH_MDP),
49 'profile/usage' => $this->make_hook('p_usage', AUTH_MDP),
e49018a7 50
2398e553
SJ
51 'referent' => $this->make_hook('referent', AUTH_COOKIE),
52 'emploi' => $this->make_hook('ref_search', AUTH_COOKIE),
53 'referent/search' => $this->make_hook('ref_search', AUTH_COOKIE),
54 'referent/ssect' => $this->make_hook('ref_sect', AUTH_COOKIE, 'user', NO_AUTH),
55 'referent/country' => $this->make_hook('ref_country', AUTH_COOKIE, 'user', NO_AUTH),
2f678da1 56
2398e553 57 'groupes-x' => $this->make_hook('xnet', AUTH_COOKIE),
926f16d7 58
2398e553
SJ
59 'vcard' => $this->make_hook('vcard', AUTH_COOKIE, 'user', NO_HTTPS),
60 'admin/binets' => $this->make_hook('admin_binets', AUTH_MDP, 'admin'),
61 'admin/medals' => $this->make_hook('admin_medals', AUTH_MDP, 'admin'),
62 'admin/education' => $this->make_hook('admin_education', AUTH_MDP, 'admin'),
63 'admin/education_field' => $this->make_hook('admin_education_field', AUTH_MDP, 'admin'),
64 'admin/education_degree' => $this->make_hook('admin_education_degree', AUTH_MDP, 'admin'),
043bbacf 65 'admin/education_degree_set' => $this->make_hook('admin_education_degree_set', AUTH_MDP, 'admin'),
2398e553
SJ
66 'admin/sections' => $this->make_hook('admin_sections', AUTH_MDP, 'admin'),
67 'admin/secteurs' => $this->make_hook('admin_secteurs', AUTH_MDP, 'admin'),
68 'admin/networking' => $this->make_hook('admin_networking', AUTH_MDP, 'admin'),
69 'admin/trombino' => $this->make_hook('admin_trombino', AUTH_MDP, 'admin'),
70 'admin/ss_secteurs' => $this->make_hook('admin_ss_secteurs', AUTH_MDP, 'admin'),
71 'admin/fonctions' => $this->make_hook('admin_fonctions', AUTH_MDP, 'admin'),
4962a9ce
SJ
72 'admin/corps_enum' => $this->make_hook('admin_corps_enum', AUTH_MDP, 'admin'),
73 'admin/corps_rank' => $this->make_hook('admin_corps_rank', AUTH_MDP, 'admin'),
92423144 74
7d8b17cb 75 );
76 }
77
e8599c21 78 /* XXX COMPAT */
79 function handler_fiche(&$page)
80 {
5e2307dc 81 return $this->handler_profile($page, Env::v('user'));
e8599c21 82 }
83
adbdf493 84 function handler_photo(&$page, $x = null, $req = null)
85 {
954cfb01 86 if (!$x || !($user = User::getSilent($x))) {
adbdf493 87 return PL_NOT_FOUND;
88 }
89
954cfb01
VZ
90 // Retrieve the photo and its mime type.
91 $photo_data = null;
92 $photo_type = null;
adbdf493 93
cab08090 94 if ($req && S::logged()) {
adbdf493 95 include 'validations.inc.php';
954cfb01
VZ
96 $myphoto = PhotoReq::get_request($user->id());
97 if ($myphoto) {
98 $photo_data = $myphoto->data;
99 $photo_type = $myphoto->mimetype;
100 }
adbdf493 101 } else {
08cce2ff 102 $res = XDB::query(
954cfb01 103 "SELECT attachmime, attach, pub
adbdf493 104 FROM photo
954cfb01
VZ
105 WHERE uid = {?}", $user->id());
106 list($photo_type, $photo_data, $photo_pub) = $res->fetchOneRow();
107 if ($photo_pub != 'public' && !S::logged()) {
108 $photo_type = $photo_data = null;
adbdf493 109 }
110 }
954cfb01
VZ
111
112 // Display the photo, or a default one when not available.
113 if ($photo_type && $photo_data != null) {
114 header('Content-type: image/' . $photo_type);
115 echo $photo_data;
116 } else {
117 header('Content-type: image/png');
118 echo file_get_contents(dirname(__FILE__).'/../htdocs/images/none.png');
119 }
adbdf493 120 exit;
121 }
122
85cc366b
FB
123 function handler_medal(&$page, $mid)
124 {
bd6a5fe3
VZ
125 $thumb = ($mid == 'thumb');
126 $mid = $thumb ? @func_get_arg(2) : $mid;
127
85cc366b
FB
128 $res = XDB::query("SELECT img
129 FROM profile_medals
130 WHERE id = {?}",
131 $mid);
bd6a5fe3
VZ
132 $img = $thumb ?
133 dirname(__FILE__).'/../htdocs/images/medals/thumb/' . $res->fetchOneCell() :
134 dirname(__FILE__).'/../htdocs/images/medals/' . $res->fetchOneCell();
85cc366b
FB
135 $type = mime_content_type($img);
136 header("Content-Type: $type");
137 echo file_get_contents($img);
138 exit;
139 }
140
40176c6c
GB
141 function handler_networking(&$page, $mid)
142 {
143 $res = XDB::query("SELECT icon
144 FROM profile_networking_enum
145 WHERE network_type = {?}",
146 $mid);
147 $img = dirname(__FILE__) . '/../htdocs/images/networking/' . $res->fetchOneCell();
148 $type = mime_content_type($img);
149 header("Content-Type: $type");
150 echo file_get_contents($img);
151 exit;
152 }
153
fb9a56cb 154 function handler_photo_change(&$page)
155 {
ebfdf077 156 global $globals;
8b1f8e12 157 $page->changeTpl('profile/trombino.tpl');
fb9a56cb 158
159 require_once('validations.inc.php');
160
54cabe90 161 $trombi_x = '/home/web/trombino/photos' . S::v('promo') . '/' . S::user()->login() . '.jpg';
fb9a56cb 162 if (Env::has('upload')) {
8827fc52
VZ
163 S::assert_xsrf_token();
164
954cfb01 165 $upload = new PlUpload(S::user()->login(), 'photo');
abe7e055 166 if (!$upload->upload($_FILES['userfile']) && !$upload->download(Env::v('photo'))) {
a7d35093 167 $page->trigError('Une erreur est survenue lors du téléchargement du fichier');
abe7e055 168 } else {
5daf68f6 169 $myphoto = new PhotoReq(S::user(), $upload);
abe7e055 170 if ($myphoto->isValid()) {
171 $myphoto->submit();
fb9a56cb 172 }
fb9a56cb 173 }
174 } elseif (Env::has('trombi')) {
8827fc52
VZ
175 S::assert_xsrf_token();
176
954cfb01 177 $upload = new PlUpload(S::user()->login(), 'photo');
abe7e055 178 if ($upload->copyFrom($trombi_x)) {
5daf68f6 179 $myphoto = new PhotoReq(S::user(), $upload);
abe7e055 180 if ($myphoto->isValid()) {
181 $myphoto->commit();
182 $myphoto->clean();
183 }
fb9a56cb 184 }
5e2307dc 185 } elseif (Env::v('suppr')) {
8827fc52
VZ
186 S::assert_xsrf_token();
187
84868ee9
FB
188 XDB::execute('DELETE FROM photo
189 WHERE uid = {?}',
190 S::v('uid'));
191 XDB::execute('DELETE FROM requests
192 WHERE user_id = {?} AND type="photo"',
193 S::v('uid'));
ebfdf077 194 $globals->updateNbValid();
5e2307dc 195 } elseif (Env::v('cancel')) {
8827fc52
VZ
196 S::assert_xsrf_token();
197
84868ee9
FB
198 $sql = XDB::query('DELETE FROM requests
199 WHERE user_id={?} AND type="photo"',
200 S::v('uid'));
ebfdf077 201 $globals->updateNbValid();
fb9a56cb 202 }
203
84868ee9
FB
204 $sql = XDB::query('SELECT COUNT(*)
205 FROM requests
206 WHERE user_id={?} AND type="photo"',
abe7e055 207 S::v('uid'));
fb9a56cb 208 $page->assign('submited', $sql->fetchOneCell());
209 $page->assign('has_trombi_x', file_exists($trombi_x));
fb9a56cb 210 }
211
e8599c21 212 function handler_profile(&$page, $x = null)
213 {
54cabe90
VZ
214 // TODO/note for upcoming developers:
215 // We currently maintain both $user and $login; $user is the old way of
216 // obtaining information, and eventually everything will be loaded
217 // through $login. That is the reason why in the template $user is named
218 // $x, and $login $user (sorry for the confusion).
219
220 // Determines which user to display the profile of, and retrieves basic
221 // information on this user.
e8599c21 222 if (is_null($x)) {
223 return PL_NOT_FOUND;
224 }
225
344234db
VZ
226 $login = S::logged() ? User::get($x) : User::getSilent($x);
227 if (!$login) {
228 return PL_NOT_FOUND;
e8599c21 229 }
e8599c21 230
54cabe90
VZ
231 // Now that we know this is the profile of an existing user, we can
232 // switch to the appropriate template.
b13048df 233 $page->changeTpl('profile/profile.tpl', SIMPLE);
54cabe90 234 require_once 'user.func.inc.php';
e8599c21 235
54cabe90
VZ
236 // Determines the access level at which the profile will be displayed.
237 if (!S::logged() || Env::v('view') == 'public') {
238 $view = 'public';
239 } else if (S::logged() && Env::v('view') == 'ax') {
240 $view = 'ax';
e8599c21 241 } else {
54cabe90 242 $view = 'private';
e8599c21 243 }
244
54cabe90
VZ
245 // Determines is the user is registered, and fetches the user infos in
246 // the appropriate way.
344234db
VZ
247 $res = XDB::query("SELECT perms IN ('admin','user','disabled')
248 FROM auth_user_md5
249 WHERE user_id = {?}", $login->id());
54cabe90
VZ
250 if ($res->fetchOneCell()) {
251 $new = Env::v('modif') == 'new';
252 $user = get_user_details($login->login(), S::v('uid'), $view);
253 } else {
254 $new = false;
255 $user = array();
ba25f663 256 if (S::logged()) {
54cabe90 257 pl_redirect('marketing/public/' . $login->login());
ba25f663 258 }
e8599c21 259 }
ba25f663 260
54cabe90 261 // Profile view are logged.
e31c1c3e 262 if (S::logged()) {
b8971a3e 263 S::logger()->log('view_profile', $login->login());
e8599c21 264 }
265
54cabe90
VZ
266 // Sets the title of the html page.
267 $page->setTitle($login->fullName());
e8599c21 268
54cabe90
VZ
269 // Prepares the display of the user's mugshot.
270 $photo = 'photo/' . $login->login() . ($new ? '/req' : '');
271 if (!isset($user['photo_pub']) || !has_user_right($user['photo_pub'], $view)) {
272 $photo = "";
273 }
274 $page->assign('photo_url', $photo);
e8599c21 275
2f678da1 276 if (!isset($user['y']) and !isset($user['x'])) {
e8599c21 277 list($user['x'], $user['y']) = getimagesize("images/none.png");
278 }
2f678da1 279 if (!isset($user['y']) or $user['y'] < 1) $user['y']=1;
280 if (!isset($user['x']) or $user['x'] < 1) $user['x']=1;
281 if ($user['x'] > 240) {
e8599c21 282 $user['y'] = (integer)($user['y']*240/$user['x']);
283 $user['x'] = 240;
284 }
2f678da1 285 if ($user['y'] > 300) {
e8599c21 286 $user['x'] = (integer)($user['x']*300/$user['y']);
287 $user['y'] = 300;
288 }
2f678da1 289 if ($user['x'] < 160) {
e8599c21 290 $user['y'] = (integer)($user['y']*160/$user['x']);
291 $user['x'] = 160;
292 }
293
54cabe90
VZ
294 // Determines and displays the virtual alias.
295 global $globals;
08cce2ff 296 $res = XDB::query(
54cabe90
VZ
297 "SELECT alias
298 FROM virtual
299 INNER JOIN virtual_redirect USING (vid)
300 INNER JOIN auth_user_quick ON (user_id = {?} AND emails_alias_pub = 'public')
301 WHERE (redirect={?} OR redirect={?})
302 AND alias LIKE '%@{$globals->mail->alias_dom}'",
303 $login->id(),
304 $login->forlifeEmail(),
305 // TODO(vzanotti): get ride of all @m4x.org addresses in the
306 // virtual redirect base, and remove this über-ugly hack.
307 $login->login() . '@' . $globals->mail->domain2);
e8599c21 308 $page->assign('virtualalias', $res->fetchOneCell());
54cabe90
VZ
309
310 // Adds miscellaneous properties to the display.
311 // Adds the global user property array to the display.
312 $page->assign_by_ref('x', $user);
313 $page->assign_by_ref('user', $login);
314 $page->assign('logged', has_user_right('private', $view));
24f4c06a 315 $page->assign('view', $view);
e8599c21 316
c99ef281 317 $page->addJsLink('close_on_esc.js');
54cabe90
VZ
318 if (isset($user['date'])) {
319 header('Last-Modified: ' . date('r', strtotime($user['date'])));
320 }
e8599c21 321 }
322
5122b820 323 function handler_ax(&$page, $user = null)
324 {
34ca2048 325 $user = User::get($user);
5122b820 326 if (!$user) {
327 return PL_NOT_FOUND;
328 }
34ca2048
VZ
329
330 $res = XDB::query("SELECT matricule_ax
331 FROM auth_user_md5
332 WHERE user_id = {?}", $user->id());
5122b820 333 $mat = $res->fetchOneCell();
334 if (!intval($mat)) {
34ca2048 335 $page->kill("Le matricule AX de {$user->login()} est inconnu");
5122b820 336 }
337 http_redirect("http://www.polytechniciens.com/?page=AX_FICHE_ANCIEN&anc_id=$mat");
338 }
339
46ae38a9 340 function handler_p_edit(&$page, $opened_tab = null, $mode = null)
2f678da1 341 {
342 global $globals;
343
e1635d16
FB
344 // AX Synchronization
345 require_once 'synchro_ax.inc.php';
2f678da1 346 if (is_ax_key_missing()) {
347 $page->assign('no_private_key', true);
348 }
5e2307dc 349 if (Env::v('synchro_ax') == 'confirm' && !is_ax_key_missing()) {
b3bf7395 350 ax_synchronize(S::user()->login(), S::v('uid'));
a7d35093 351 $page->trigSuccess('Ton profil a été synchronisé avec celui du site polytechniciens.com');
2f678da1 352 }
353
7bff4cb0 354 // Build the page
c6a7beb2 355 $page->addJsLink('ajax.js');
f711b03f 356 $page->addJsLink('education.js');
46ae38a9 357 $page->addJsLink('grades.js');
16594a1a 358 $page->addJsLink('profile.js');
4b4b4b67 359 $page->addJsLink('jquery.autocomplete.js');
6d20fb1d 360 $wiz = new PlWizard('Profil', PlPage::getCoreTpl('plwizard.tpl'), true, true);
460d8f55 361 $this->load('page.inc.php');
e1635d16 362 $wiz->addPage('ProfileGeneral', 'Général', 'general');
0b14f91d 363 $wiz->addPage('ProfileAddresses', 'Adresses personnelles', 'adresses');
e1635d16 364 $wiz->addPage('ProfileGroups', 'Groupes X - Binets', 'poly');
a7c28fff 365 $wiz->addPage('ProfileDecos', 'Décorations - Medailles', 'deco');
3950bc21 366 $wiz->addPage('ProfileJobs', 'Informations professionnelles', 'emploi');
e1635d16
FB
367 $wiz->addPage('ProfileSkills', 'Compétences diverses', 'skill');
368 $wiz->addPage('ProfileMentor', 'Mentoring', 'mentor');
46ae38a9 369 $wiz->apply($page, 'profile/edit', $opened_tab, $mode);
35aedff2 370
7bff4cb0
FB
371 // Misc checks
372 $res = XDB::query("SELECT user_id
373 FROM auth_user_md5
374 WHERE user_id = {?} AND naissance = '0000-00-00'", S::i('uid'));
375 if ($res->numRows()) {
a7d35093 376 $page->trigWarning("Ta date de naissance n'est pas renseignée, ce qui t'empêcheras de réaliser"
7bff4cb0
FB
377 . " la procédure de récupération de mot de passe si un jour tu le perdais");
378 }
379
46f272fe 380 $page->setTitle('Mon Profil');
2f678da1 381 }
382
f711b03f 383 function handler_education_js(&$page)
46ae38a9
FB
384 {
385 header('Content-Type: text/javascript; charset=utf-8');
386 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
387 header('Last-Modified:' . gmdate('D, d M Y H:i:s') . ' GMT');
388 header('Cache-Control: no-cache, must-revalidate');
389 header('Pragma: no-cache');
f711b03f
SJ
390 $page->changeTpl('profile/education.js.tpl', NO_SKIN);
391 require_once "education.func.inc.php";
46ae38a9
FB
392 }
393
394 function handler_grades_js(&$page)
395 {
396 header('Content-Type: text/javascript; charset=utf-8');
397 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
398 header('Last-Modified:' . gmdate('D, d M Y H:i:s') . ' GMT');
399 header('Cache-Control: no-cache, must-revalidate');
400 header('Pragma: no-cache');
401 $page->changeTpl('profile/grades.js.tpl', NO_SKIN);
402 $res = XDB::iterator("SELECT *
403 FROM profile_medals_grades
404 ORDER BY mid, pos");
405 $grades = array();
406 while ($tmp = $res->next()) {
407 $grades[$tmp['mid']][] = $tmp;
408 }
409 $page->assign('grades', $grades);
410
411 $res = XDB::iterator("SELECT *, FIND_IN_SET('validation', flags) AS validate
412 FROM profile_medals
413 ORDER BY type, text");
414 $mlist = array();
415 while ($tmp = $res->next()) {
416 $mlist[$tmp['type']][] = $tmp;
417 }
418 $page->assign('medal_list', $mlist);
419 }
420
c6a7beb2
FB
421 function handler_ajax_address(&$page, $adid)
422 {
46ae38a9 423 header('Content-Type: text/html; charset=utf-8');
c6a7beb2
FB
424 $page->changeTpl('profile/adresses.address.tpl', NO_SKIN);
425 $page->assign('i', $adid);
426 $page->assign('adr', array());
c6a7beb2
FB
427 }
428
bde2be3b 429 function handler_ajax_tel(&$page, $prefid, $prefname, $telid)
c6a7beb2 430 {
46ae38a9 431 header('Content-Type: text/html; charset=utf-8');
bde2be3b
GB
432 $page->changeTpl('profile/phone.tpl', NO_SKIN);
433 $page->assign('prefid', $prefid);
434 $page->assign('prefname', $prefname);
435 $page->assign('telid', $telid);
c6a7beb2 436 $page->assign('tel', array());
c6a7beb2
FB
437 }
438
58acfe8b 439 function handler_ajax_edu(&$page, $eduid, $class)
043bbacf
SJ
440 {
441 header('Content-Type: text/html; charset=utf-8');
442 $page->changeTpl('profile/edu.tpl', NO_SKIN);
443 $res = XDB::iterator("SELECT id, field
444 FROM profile_education_field_enum
445 ORDER BY field");
446 $page->assign('edu_fields', $res->fetchAllAssoc());
447 $page->assign('eduid', $eduid);
58acfe8b 448 $page->assign('class', $class);
f711b03f 449 require_once "education.func.inc.php";
043bbacf
SJ
450 }
451
85cc366b
FB
452 function handler_ajax_medal(&$page, $id)
453 {
46ae38a9 454 header('Content-Type: text/html; charset=utf-8');
85cc366b
FB
455 $page->changeTpl('profile/deco.medal.tpl', NO_SKIN);
456 $page->assign('id', $id);
457 $page->assign('medal', array('valid' => 0, 'grade' => 0));
85cc366b
FB
458 }
459
2dcac0f5
FB
460 function handler_ajax_job(&$page, $id)
461 {
46ae38a9 462 header('Content-Type: text/html; charset=utf-8');
2dcac0f5
FB
463 $page->changeTpl('profile/jobs.job.tpl', NO_SKIN);
464 $page->assign('i', $id);
465 $page->assign('job', array());
2dcac0f5 466 $page->assign('new', true);
b814a8b8
SJ
467 $res = XDB::query("SELECT id, name AS label
468 FROM profile_job_sector_enum");
daa66175
SJ
469 $page->assign('secteurs', $res->fetchAllAssoc());
470 $res = XDB::query("SELECT id, fonction_fr, FIND_IN_SET('titre', flags) AS title
471 FROM fonctions_def
472 ORDER BY id");
473 $page->assign('fonctions', $res->fetchAllAssoc());
06a99865
SJ
474 require_once "emails.combobox.inc.php";
475 fill_email_combobox($page);
2dcac0f5
FB
476 }
477
c7139c07 478 function handler_ajax_secteur(&$page, $id, $jobid, $jobpref, $sect, $ssect = -1)
2dcac0f5 479 {
46ae38a9 480 header('Content-Type: text/html; charset=utf-8');
c7139c07
SJ
481 $res = XDB::iterator("SELECT id, name AS label, FIND_IN_SET('optgroup', flags) AS optgroup
482 FROM profile_job_subsector_enum
483 WHERE sectorid = {?}", $sect);
2dcac0f5
FB
484 $page->changeTpl('profile/jobs.secteur.tpl', NO_SKIN);
485 $page->assign('id', $id);
486 $page->assign('ssecteurs', $res);
487 $page->assign('sel', $ssect);
5fecdf6d
SJ
488 if ($id != -1) {
489 $page->assign('change', 1);
490 $page->assign('jobid', $jobid);
491 $page->assign('jobpref', $jobpref);
492 }
c7139c07
SJ
493 }
494
495 function handler_ajax_ssecteur(&$page, $id, $ssect, $sssect = -1)
496 {
497 header('Content-Type: text/html; charset=utf-8');
498 $res = XDB::iterator("SELECT id, name AS label
499 FROM profile_job_subsubsector_enum
500 WHERE subsectorid = {?}", $ssect);
501 $page->changeTpl('profile/jobs.soussecteur.tpl', NO_SKIN);
502 $page->assign('id', $id);
503 $page->assign('sssecteurs', $res);
504 $page->assign('sel', $sssect);
2dcac0f5
FB
505 }
506
f25e1a56
FB
507 function handler_ajax_skill(&$page, $cat, $id)
508 {
46ae38a9 509 header('Content-Type: text/html; charset=utf-8');
f25e1a56 510 $page->changeTpl('profile/skill.skill.tpl', NO_SKIN);
f25e1a56
FB
511 $page->assign('cat', $cat);
512 $page->assign('id', $id);
513 if ($cat == 'competences') {
514 $page->assign('levels', array('initié' => 'initié',
515 'bonne connaissance' => 'bonne connaissance',
516 'expert' => 'expert'));
517 } else {
518 $page->assign('levels', array(1 => 'connaissance basique',
519 2 => 'maîtrise des bases',
520 3 => 'maîtrise limitée',
521 4 => 'maîtrise générale',
522 5 => 'bonne maîtrise',
523 6 => 'maîtrise complète'));
524 }
525 }
526
b04882ff
PC
527 function handler_ajax_searchname(&$page, $snid)
528 {
529 header('Content-Type: text/html; charset=utf-8');
530 $page->changeTpl('profile/general.searchname.tpl', NO_SKIN);
531 $page->assign('i', $snid);
532 $page->assign('sn', array());
533 $page->assign('newsn', true);
534 }
535
9b0fa329 536 function handler_p_orange(&$page)
537 {
8b1f8e12 538 $page->changeTpl('profile/orange.tpl');
9b0fa329 539
540 require_once 'validations.inc.php';
9b0fa329 541
d1319488 542 $res = XDB::query("SELECT e.entry_year, e.grad_year, d.promo, FIND_IN_SET('femme', u.flags) AS sexe
fb2c09c9 543 FROM auth_user_md5 AS u
d1319488 544 INNER JOIN profile_display AS d ON (d.pid = u.user_id)
fb2c09c9
SJ
545 INNER JOIN profile_education AS e ON (e.uid = u.user_id AND FIND_IN_SET('primary', e.flags))
546 WHERE u.user_id = {?}", S::v('uid'));
9b0fa329 547
fb2c09c9 548 list($promo, $promo_sortie_old, $promo_display, $sexe) = $res->fetchOneRow();
9b0fa329 549 $page->assign('promo_sortie_old', $promo_sortie_old);
fb2c09c9
SJ
550 $page->assign('promo', $promo);
551 $page->assign('promo_display', $promo_display);
552 $page->assign('sexe', $sexe);
9b0fa329 553
554 if (!Env::has('promo_sortie')) {
fd8f77de 555 return;
8827fc52
VZ
556 } else {
557 S::assert_xsrf_token();
9b0fa329 558 }
559
5e2307dc 560 $promo_sortie = Env::i('promo_sortie');
9b0fa329 561
562 if ($promo_sortie < 1000 || $promo_sortie > 9999) {
fb2c09c9 563 $page->trigError('L\'année de sortie doit être un nombre de quatre chiffres.');
9b0fa329 564 }
565 elseif ($promo_sortie < $promo + 3) {
fb2c09c9 566 $page->trigError('Trop tôt !');
9b0fa329 567 }
568 elseif ($promo_sortie == $promo_sortie_old) {
a7d35093 569 $page->trigWarning('Tu appartiens déjà à la promotion correspondante à cette année de sortie.');
9b0fa329 570 }
571 elseif ($promo_sortie == $promo + 3) {
fb2c09c9
SJ
572 XDB::execute("UPDATE profile_education
573 SET grad_year = {?}
574 WHERE uid = {?} AND FIND_IN_SET('primary', flags)", $promo_sortie, S::v('uid'));
a7d35093 575 $page->trigSuccess('Ton statut "orange" a été supprimé.');
9b0fa329 576 $page->assign('promo_sortie_old', $promo_sortie);
577 }
578 else {
579 $page->assign('promo_sortie', $promo_sortie);
580
581 if (Env::has('submit')) {
5daf68f6 582 $myorange = new OrangeReq(S::user(), $promo_sortie);
9b0fa329 583 $myorange->submit();
584 $page->assign('myorange', $myorange);
585 }
586 }
9b0fa329 587 }
588
2f678da1 589 function handler_referent(&$page, $x = null)
28e16d4d 590 {
28e16d4d 591 require_once 'user.func.inc.php';
8b1f8e12 592 $page->changeTpl('profile/fiche_referent.tpl', SIMPLE);
28e16d4d 593
b3bf7395
VZ
594 $user = User::get($x);
595 if ($user == null) {
28e16d4d 596 return PL_NOT_FOUND;
597 }
598
b3bf7395
VZ
599 $res = XDB::query("SELECT cv FROM auth_user_md5 WHERE user_id = {?}", $user->id());
600 $cv = $res->fetchOneCell();
28e16d4d 601
b3bf7395
VZ
602 $page->assign_by_ref('user', $user);
603 $page->assign('cv', MiniWiki::WikiToHTML($cv, true));
604 $page->assign('adr_pro', get_user_details_pro($user->id()));
28e16d4d 605
606 ///// recuperations infos referent
607
608 //expertise
5fecdf6d 609 $res = XDB::query("SELECT expertise FROM profile_mentor WHERE uid = {?}", $user->id());
28e16d4d 610 $page->assign('expertise', $res->fetchOneCell());
611
612 //secteurs
613 $secteurs = $ss_secteurs = Array();
08cce2ff 614 $res = XDB::iterRow(
f926f2b8 615 "SELECT s.name AS label, ss.name AS label
5fecdf6d
SJ
616 FROM profile_mentor_sector AS m
617 LEFT JOIN profile_job_sector_enum AS s ON(m.sectorid = s.id)
618 LEFT JOIN profile_job_subsector_enum AS ss ON(m.sectorid = ss.sectorid AND m.subsectorid = ss.id)
b3bf7395 619 WHERE uid = {?}", $user->id());
28e16d4d 620 while (list($sec, $ssec) = $res->next()) {
621 $secteurs[] = $sec;
622 $ss_secteurs[] = $ssec;
623 }
624 $page->assign_by_ref('secteurs', $secteurs);
625 $page->assign_by_ref('ss_secteurs', $ss_secteurs);
626
627 //pays
08cce2ff 628 $res = XDB::query(
28e16d4d 629 "SELECT gp.pays
5fecdf6d
SJ
630 FROM profile_mentor_country AS m
631 LEFT JOIN geoloc_pays AS gp ON (m.country = gp.a2)
b3bf7395 632 WHERE uid = {?}", $user->id());
28e16d4d 633 $page->assign('pays', $res->fetchColumn());
634
c99ef281 635 $page->addJsLink('close_on_esc.js');
28e16d4d 636 }
637
ff3eb9b7 638 function handler_ref_search(&$page, $action = null, $subaction = null)
2f678da1 639 {
8f201b69
FB
640 $wp = new PlWikiPage('Docs.Emploi');
641 $wp->buildCache();
642
46f272fe 643 $page->setTitle('Conseil Pro');
2f678da1 644
2f678da1 645 //recuperation des noms de secteurs
5fecdf6d 646 $res = XDB::iterRow("SELECT id, name AS label FROM profile_job_sector_enum");
2f678da1 647 $secteurs[''] = '';
648 while (list($tmp_id, $tmp_label) = $res->next()) {
649 $secteurs[$tmp_id] = $tmp_label;
650 }
651 $page->assign_by_ref('secteurs', $secteurs);
652
2f678da1 653 // nb de mentors
5fecdf6d 654 $res = XDB::query("SELECT count(*) FROM profile_mentor");
2f678da1 655 $page->assign('mentors_number', $res->fetchOneCell());
656
2f678da1 657 // On vient d'un formulaire
ff3eb9b7 658 $where = array();
659 $pays_sel = XDB::escape(Env::v('pays_sel'));
660 $secteur_sel = XDB::escape(Env::v('secteur'));
661 $ss_secteur_sel = XDB::escape(Env::v('ss_secteur'));
662 $expertise_champ = XDB::escape(Env::v('expertise'));
663
664 if ($pays_sel != "''") {
5fecdf6d 665 $where[] = "mp.country = $pays_sel";
ff3eb9b7 666 }
667 if ($secteur_sel != "''") {
5fecdf6d 668 $where[] = "ms.sectorid = $secteur_sel";
ff3eb9b7 669 if ($ss_secteur_sel != "''") {
5fecdf6d 670 $where[] = "ms.subsectorid = $ss_secteur_sel";
2f678da1 671 }
672 }
ff3eb9b7 673 if ($expertise_champ != "''") {
674 $where[] = "MATCH(m.expertise) AGAINST($expertise_champ)";
2f678da1 675 }
676
677 if ($where) {
678 $where = join(' AND ', $where);
679
5fecdf6d
SJ
680 $set = new UserSet("INNER JOIN profile_mentor AS m ON (m.uid = u.user_id)
681 LEFT JOIN profile_mentor_country AS mp ON (mp.uid = m.uid)
682 LEFT JOIN profile_mentor_sector AS ms ON (ms.uid = m.uid)",
ff3eb9b7 683 $where);
684 $set->addMod('mentor', 'Référents');
685 $set->apply('referent/search', $page, $action, $subaction);
686 if ($set->count() > 100) {
e1635d16 687 $page->assign('recherche_trop_large', true);
2f678da1 688 }
ff3eb9b7 689 }
e1635d16 690 $page->changeTpl('profile/referent.tpl');
ff3eb9b7 691 }
2f678da1 692
e1635d16 693 function handler_ref_sect(&$page, $sect)
ff3eb9b7 694 {
695 header('Content-Type: text/html; charset=utf-8');
05cb05c0 696 $page->changeTpl('include/field.select.tpl', NO_SKIN);
ff3eb9b7 697 $page->assign('onchange', 'setSSecteurs()');
698 $page->assign('id', 'ssect_field');
699 $page->assign('name', 'ss_secteur');
5fecdf6d
SJ
700 $it = XDB::iterator("SELECT id, name AS field
701 FROM profile_job_subsector_enum
702 WHERE sectorid = {?}", $sect);
ff3eb9b7 703 $page->assign('list', $it);
704 }
2f678da1 705
ff3eb9b7 706 function handler_ref_country(&$page, $sect, $ssect = '')
707 {
708 header('Content-Type: text/html; charset=utf-8');
05cb05c0 709 $page->changeTpl('include/field.select.tpl', NO_SKIN);
ff3eb9b7 710 $page->assign('name', 'pays_sel');
5fecdf6d 711 $where = ($ssect ? ' AND ms.subsectorid = {?}' : '');
ff3eb9b7 712 $it = XDB::iterator("SELECT a2 AS id, pays AS field
5fecdf6d
SJ
713 FROM geoloc_pays AS g
714 INNER JOIN profile_mentor_country AS mp ON (mp.country = g.a2)
715 INNER JOIN profile_mentor_sector AS ms ON (ms.uid = mp.uid)
716 WHERE ms.sectorid = {?} $where
717 GROUP BY a2
718 ORDER BY pays", $sect, $ssect);
ff3eb9b7 719 $page->assign('list', $it);
2f678da1 720 }
721
926f16d7 722 function handler_p_usage(&$page)
723 {
8b1f8e12 724 $page->changeTpl('profile/nomusage.tpl');
926f16d7 725
726 require_once 'validations.inc.php';
926f16d7 727
08cce2ff 728 $res = XDB::query(
2f678da1 729 "SELECT u.nom, u.nom_usage, u.flags, e.alias
926f16d7 730 FROM auth_user_md5 AS u
2f678da1 731 LEFT JOIN aliases AS e ON(u.user_id = e.id
732 AND FIND_IN_SET('usage', e.flags))
cab08090 733 WHERE user_id={?}", S::v('uid'));
926f16d7 734
2f678da1 735 list($nom, $usage_old, $flags, $alias_old) = $res->fetchOneRow();
113f6de8 736 $flags = new PlFlagSet($flags);
926f16d7 737 $page->assign('usage_old', $usage_old);
738 $page->assign('alias_old', $alias_old);
739
e1635d16 740 $nom_usage = replace_accent(trim(Env::v('nom_usage')));
926f16d7 741 $nom_usage = strtoupper($nom_usage);
742 $page->assign('usage_req', $nom_usage);
743
744 if (Env::has('submit') && ($nom_usage != $usage_old)) {
8827fc52
VZ
745 S::assert_xsrf_token();
746
926f16d7 747 // on vient de recevoir une requete, differente de l'ancien nom d'usage
748 if ($nom_usage == $nom) {
44b071c2
SJ
749 $page->trigWarning('Le nom d\'usage que tu demandes est identique à ton nom à l\'X, '
750 . 'aucune modification n\'a donc été effectuée.');
926f16d7 751 $page->assign('same', true);
a7de4ef7 752 } else { // le nom de mariage est distinct du nom à l'X
926f16d7 753 // on calcule l'alias pour l'afficher
5e2307dc 754 $reason = Env::v('reason');
926f16d7 755 if ($reason == 'other') {
5e2307dc 756 $reason = Env::v('other_reason');
926f16d7 757 }
5daf68f6 758 $myusage = new UsageReq(S::user(), $nom_usage, $reason);
926f16d7 759 $myusage->submit();
760 $page->assign('myusage', $myusage);
761 }
762 }
926f16d7 763 }
764
a1d79217 765 function handler_xnet(&$page)
766 {
8b1f8e12 767 $page->changeTpl('profile/groupesx.tpl');
46f272fe 768 $page->setTitle('Promo, Groupes X, Binets');
e1635d16 769
a1d79217 770 $req = XDB::query('
e1635d16 771 SELECT m.asso_id, a.nom, diminutif, a.logo IS NOT NULL AS has_logo,
46e1d3ba 772 COUNT(e.eid) AS events, mail_domain AS lists
e1635d16 773 FROM groupex.membres AS m
46e1d3ba 774 INNER JOIN groupex.asso AS a ON(m.asso_id = a.id)
775 LEFT JOIN groupex.evenements AS e ON(e.asso_id = m.asso_id AND e.archive = 0)
776 WHERE uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid'));
a1d79217 777 $page->assign('assos', $req->fetchAllAssoc());
778 }
e1635d16 779
e49018a7 780 function handler_vcard(&$page, $x = null)
781 {
782 if (is_null($x)) {
783 return PL_NOT_FOUND;
784 }
785
786 global $globals;
787
788 if (substr($x, -4) == '.vcf') {
789 $x = substr($x, 0, strlen($x) - 4);
790 }
791
5d42c993
FB
792 $vcard = new VCard();
793 $vcard->addUser($x);
794 $vcard->show();
e49018a7 795 }
92423144 796
54cabe90 797 function handler_admin_trombino(&$page, $login = null, $action = null) {
8b1f8e12 798 $page->changeTpl('profile/admin_trombino.tpl');
46f272fe 799 $page->setTitle('Administration - Trombino');
e1635d16 800
54cabe90
VZ
801 if (!$login || !($user = User::get($login))) {
802 return PL_NOT_FOUND;
803 } else {
804 $page->assign_by_ref('user', $user);
805 }
e1635d16 806
92423144 807 switch ($action) {
92423144 808 case "original":
809 header("Content-type: image/jpeg");
54cabe90 810 readfile("/home/web/trombino/photos" . $user->promo() . "/" . $user->login() . ".jpg");
92423144 811 exit;
812 break;
e1635d16 813
92423144 814 case "new":
8827fc52
VZ
815 S::assert_xsrf_token();
816
92423144 817 $data = file_get_contents($_FILES['userfile']['tmp_name']);
818 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
819 $mimetype = substr($_FILES['userfile']['type'], 6);
820 unlink($_FILES['userfile']['tmp_name']);
821 XDB::execute(
822 "REPLACE INTO photo SET uid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
54cabe90 823 $user->id(), $mimetype, $data, $x, $y);
92423144 824 break;
e1635d16 825
92423144 826 case "delete":
8827fc52
VZ
827 S::assert_xsrf_token();
828
54cabe90 829 XDB::execute('DELETE FROM photo WHERE uid = {?}', $user->id());
92423144 830 break;
831 }
92423144 832 }
833 function handler_admin_binets(&$page, $action = 'list', $id = null) {
46f272fe 834 $page->setTitle('Administration - Binets');
92423144 835 $page->assign('title', 'Gestion des binets');
836 $table_editor = new PLTableEditor('admin/binets', 'binets_def', 'id');
837 $table_editor->add_join_table('binets_ins','binet_id',true);
a7de4ef7 838 $table_editor->describe('text','intitulé',true);
92423144 839 $table_editor->apply($page, $action, $id);
840 }
043bbacf 841 function handler_admin_education(&$page, $action = 'list', $id = null) {
46f272fe 842 $page->setTitle('Administration - Formations');
92423144 843 $page->assign('title', 'Gestion des formations');
043bbacf
SJ
844 $table_editor = new PLTableEditor('admin/education', 'profile_education_enum', 'id');
845 $table_editor->add_join_table('profile_education', 'eduid', true);
846 $table_editor->add_join_table('profile_education_degree', 'eduid', true);
847 $table_editor->describe('name', 'intitulé', true);
848 $table_editor->describe('url', 'site web', false);
849 $table_editor->apply($page, $action, $id);
850 }
851 function handler_admin_education_field(&$page, $action = 'list', $id = null) {
852 $page->setTitle('Administration - Domaines de formation');
853 $page->assign('title', 'Gestion des domaines de formation');
854 $table_editor = new PLTableEditor('admin/education_field', 'profile_education_field_enum', 'id', true);
855 $table_editor->add_join_table('profile_education', 'fieldid', true);
856 $table_editor->describe('field', 'domaine', true);
857 $table_editor->apply($page, $action, $id);
858 }
859 function handler_admin_education_degree(&$page, $action = 'list', $id = null) {
860 $page->setTitle('Administration - Niveau de formation');
861 $page->assign('title', 'Gestion des niveau de formation');
862 $table_editor = new PLTableEditor('admin/education_degree', 'profile_education_degree_enum', 'id', true);
863 $table_editor->add_join_table('profile_education_degree', 'degreeid', true);
864 $table_editor->add_join_table('profile_education', 'degreeid', true);
865 $table_editor->describe('degree', 'niveau', true);
866 $table_editor->apply($page, $action, $id);
867 }
868 function handler_admin_education_degree_set(&$page, $action = 'list', $id = null) {
869 $page->setTitle('Administration - Correspondances formations - niveau de formation');
870 $page->assign('title', 'Gestion des correspondances formations - niveau de formation');
871 $table_editor = new PLTableEditor('admin/education_degree_set', 'profile_education_degree', 'eduid', true);
872 $table_editor->describe('eduid', 'formation', true);
873 $table_editor->describe('degreeid', 'niveau', true);
92423144 874 $table_editor->apply($page, $action, $id);
e1635d16 875 }
b09690be 876 function handler_admin_sections(&$page, $action = 'list', $id = null) {
46f272fe 877 $page->setTitle('Administration - Sections');
a20aab02 878 $page->assign('title', 'Gestion des sections');
b09690be 879 $table_editor = new PLTableEditor('admin/sections','sections','id');
880 $table_editor->describe('text','intitulé',true);
881 $table_editor->apply($page, $action, $id);
e1635d16 882 }
a20aab02 883 function handler_admin_ss_secteurs(&$page, $action = 'list', $id = null) {
46f272fe 884 $page->setTitle('Administration - Sous-secteurs');
a20aab02
SJ
885 $page->assign('title', 'Gestion des sous-secteurs');
886 $table_editor = new PLTableEditor('admin/ss_secteurs', 'emploi_ss_secteur', 'id', true);
887 $table_editor->describe('label', 'intitulé', true);
888 $table_editor->apply($page, $action, $id);
889 }
890 function handler_admin_fonctions(&$page, $action = 'list', $id = null) {
46f272fe 891 $page->setTitle('Administration - Fonctions');
a20aab02
SJ
892 $page->assign('title', 'Gestion des fonctions');
893 $table_editor = new PLTableEditor('admin/fonctions', 'fonctions_def', 'id', true);
894 $table_editor->describe('fonction_fr', 'intitulé', true);
895 $table_editor->describe('fonction_en', 'intitulé (ang)', true);
896 $table_editor->describe('flags', 'titre', true);
897 $table_editor->apply($page, $action, $id);
898 }
b09690be 899 function handler_admin_secteurs(&$page, $action = 'list', $id = null) {
46f272fe 900 $page->setTitle('Administration - Secteurs');
a20aab02
SJ
901 $page->assign('title', 'Gestion des secteurs');
902 $table_editor = new PLTableEditor('admin/secteurs', 'emploi_secteur', 'id', true);
903 $table_editor->describe('label', 'intitulé', true);
b09690be 904 $table_editor->apply($page, $action, $id);
e1635d16 905 }
15beefb3
GB
906 function handler_admin_networking(&$page, $action = 'list', $id = null) {
907 $page->assign('xorg_title', 'Polytechnique.org - Administration - Networking');
908 $page->assign('title', 'Gestion des types de networking');
909 $table_editor = new PLTableEditor('admin/networking', 'profile_networking_enum', 'network_type');
910 $table_editor->describe('name', 'intitulé', true);
911 $table_editor->describe('icon', 'nom de l\'icône', false);
dc6378df
GB
912 $table_editor->describe('filter', 'filtre', true);
913 $table_editor->describe('link', 'lien web', true);
15beefb3
GB
914 $table_editor->apply($page, $action, $id);
915 }
4962a9ce
SJ
916 function handler_admin_corps_enum(&$page, $action = 'list', $id = null) {
917 $page->setTitle('Administration - Corps');
918 $page->assign('title', 'Gestion des Corps');
919 $table_editor = new PLTableEditor('admin/corps_enum', 'profile_corps_enum', 'id');
920 $table_editor->describe('name', 'intitulé', true);
921 $table_editor->describe('abbreviation', 'abbréviation', true);
922 $table_editor->describe('still_exists', 'existe encore ?', true);
923 $table_editor->apply($page, $action, $id);
924 }
925 function handler_admin_corps_rank(&$page, $action = 'list', $id = null) {
926 $page->setTitle('Administration - Grade dans les Corps');
927 $page->assign('title', 'Gestion des grade dans les Corps');
928 $table_editor = new PLTableEditor('admin/corps_rank', 'profile_corps_rank_enum', 'id');
929 $table_editor->describe('name', 'intitulé', true);
930 $table_editor->describe('abbreviation', 'abbréviation', true);
931 $table_editor->apply($page, $action, $id);
932 }
92423144 933 function handler_admin_medals(&$page, $action = 'list', $id = null) {
46f272fe 934 $page->setTitle('Administration - Distinctions');
92423144 935 $page->assign('title', 'Gestion des Distinctions');
936 $table_editor = new PLTableEditor('admin/medals','profile_medals','id');
a7de4ef7 937 $table_editor->describe('text', 'intitulé', true);
92423144 938 $table_editor->describe('img', 'nom de l\'image', false);
d02b8359 939 $table_editor->describe('flags', 'valider', true);
92423144 940 $table_editor->apply($page, $action, $id);
941 if ($id && $action == 'edit') {
8b1f8e12 942 $page->changeTpl('profile/admin_decos.tpl');
e1635d16 943
92423144 944 $mid = $id;
e1635d16 945
92423144 946 if (Post::v('act') == 'del') {
75a17710
FB
947 XDB::execute('DELETE FROM profile_medals_grades
948 WHERE mid={?} AND gid={?}', $mid, Post::i('gid'));
92423144 949 } else {
950 foreach (Post::v('grades', array()) as $gid=>$text) {
154ee23a
OLF
951 if ($gid === 0) {
952 if (!empty($text)) {
953 $res = XDB::query('SELECT MAX(gid)
954 FROM profile_medals_grades
955 WHERE mid = {?}', $mid);
956 $gid = $res->fetchOneCell() + 1;
957
958 XDB::execute('INSERT INTO profile_medals_grades (mid, gid, text, pos)
959 VALUES ({?}, {?}, {?}, {?})',
960 $mid, $gid, $text, $_POST['pos']['0']);
961 }
962 } else {
963 XDB::execute('UPDATE profile_medals_grades
964 SET pos={?}, text={?}
965 WHERE gid={?} AND mid={?}', $_POST['pos'][$gid], $text, $gid, $mid);
966 }
92423144 967 }
968 }
969 $res = XDB::iterator('SELECT gid, text, pos FROM profile_medals_grades WHERE mid={?} ORDER BY pos', $mid);
970 $page->assign('grades', $res);
971 }
e1635d16 972 }
7d8b17cb 973}
974
a7de4ef7 975// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
7d8b17cb 976?>