first reimport from platal
[platal.git] / include / profil / get_poly.inc.php
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
22
23 //declaration des fonctions msarty pour les binets et groupex
24
25 $sql = "SELECT section".
26 " FROM auth_user_md5 AS u".
27 " WHERE user_id = {?}";
28
29 $result = $globals->xdb->query($sql, Session::getInt('uid', -1));
30 $section = $result->fetchOneCell();
31
32 replace_ifset($section,'section');
33
34 /************* gestion des binets ************/
35 if (Env::has('binet_op')) {
36 // retrait binet
37 if( (Env::get('binet_op', '')=='retirer')&&(Env::getInt('binet_id', 0) != 0)) {
38 $globals->xdb->execute("DELETE FROM binets_ins WHERE user_id = {?} AND binet_id = {?}", Session::getInt('uid', -1), Env::getInt('binet_id', -1));
39 }
40 // ajout binet
41 if (Env::get('binet_op')=="ajouter" && (Env::getInt('binet_id', 0) != 0)) {
42 $globals->xdb->execute("INSERT INTO binets_ins (user_id,binet_id) VALUES({?}, {?})", Session::getInt('uid', -1), Env::getInt('binet_id', -1));
43 }
44 }
45 /************* gestion des groupes X ************/
46 if (Env::has('groupex_op')) {
47 // retrait groupe X
48 if (Env::get('groupex_op')=="retirer" && (Env::getInt('groupex_id', 0) != 0)) {
49 $globals->xdb->execute("DELETE FROM groupesx_ins WHERE guid = {?} AND gid = {?}", Session::getInt('uid', -1), Env::getInt('groupex_id', -1));
50 }
51 // ajout groupe X
52 if (Env::get('groupex_op')=="ajouter" && (Env::getInt('groupex_id', 0) != 0)) {
53 $globals->xdb->execute("INSERT INTO groupesx_ins (guid, gid) VALUES ({?}, {?})", Session::getInt('uid', -1), Env::getInt('groupex_id', -1));
54 }
55 }
56
57 ?>