2006 => 2007 Happy New Year\!
[platal.git] / include / profil / get_poly.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
0337d704 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
cab08090 29$result = XDB::query($sql, S::v('uid', -1));
0337d704 30$section = $result->fetchOneCell();
31
32replace_ifset($section,'section');
33
34/************* gestion des binets ************/
35if (Env::has('binet_op')) {
36 // retrait binet
5e2307dc 37 if( (Env::v('binet_op', '')=='retirer')&&(Env::i('binet_id', 0) != 0)) {
38 XDB::execute("DELETE FROM binets_ins WHERE user_id = {?} AND binet_id = {?}", S::v('uid', -1), Env::i('binet_id', -1));
0337d704 39 }
40 // ajout binet
5e2307dc 41 if (Env::v('binet_op')=="ajouter" && (Env::i('binet_id', 0) != 0)) {
42 XDB::execute("INSERT INTO binets_ins (user_id,binet_id) VALUES({?}, {?})", S::v('uid', -1), Env::i('binet_id', -1));
0337d704 43 }
44}
45/************* gestion des groupes X ************/
46if (Env::has('groupex_op')) {
47 // retrait groupe X
5e2307dc 48 if (Env::v('groupex_op')=="retirer" && (Env::i('groupex_id', 0) != 0)) {
49 XDB::execute("DELETE FROM groupesx_ins WHERE guid = {?} AND gid = {?}", S::v('uid', -1), Env::i('groupex_id', -1));
0337d704 50 }
51 // ajout groupe X
5e2307dc 52 if (Env::v('groupex_op')=="ajouter" && (Env::i('groupex_id', 0) != 0)) {
53 XDB::execute("INSERT INTO groupesx_ins (guid, gid) VALUES ({?}, {?})", S::v('uid', -1), Env::i('groupex_id', -1));
0337d704 54 }
55}
56
57?>