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