Bug 130: Les pages ont toutes un titre different.
[platal.git] / htdocs / admin / gerer_decos.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2004 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
22require_once('xorg.inc.php');
23new_admin_table_editor('profile_medals', 'id');
d9a33f98 24$page->assign('xorg_title','Polytechnique.org - Administration - Distinctions');
0337d704 25
26$editor->describe('type', 'type', true, 'set');
27$editor->describe('text', 'intitulé', true);
28$editor->describe('img', 'nom de l\'image', false);
29
30$editor->assign('title', 'Gestion des Distinctions');
31
32if (Post::get('frm_id')) {
33 $page->changeTpl('admin/gerer_decos.tpl');
34
35 $mid = Post::getInt('frm_id');
36
37 if (Post::get('act') == 'del') {
38 $globals->xdb->execute('DELETE FROM profile_medals_grades WHERE mid={?} AND gid={?}', $mid, Post::getInt('gid'));
39 } elseif (Post::get('act') == 'new') {
40 $globals->xdb->execute('INSERT INTO profile_medals_grades (mid,gid) VALUES({?},{?})',
41 $mid, max(array_keys(Post::getMixed('grades', Array(0))))+1);
42 } else {
43 foreach (Post::getMixed('grades', Array()) as $gid=>$text) {
44 $globals->xdb->execute('UPDATE profile_medals_grades SET pos={?}, text={?} WHERE gid={?}', $_POST['pos'][$gid], $text, $gid);
45 }
46 }
47 $res = $globals->xdb->iterator('SELECT gid, text, pos FROM profile_medals_grades WHERE mid={?} ORDER BY pos', $mid);
48 $page->assign('grades', $res);
49}
50
51$editor->run();
52?>