fix inscrire for promotions
[platal.git] / htdocs / admin / admin_trombino.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_page('admin/admin_trombino.tpl');
24
25$uid = Env::getInt('uid');
26$q = $globals->xdb->query(
27 "SELECT a.alias,promo
28 FROM auth_user_md5 AS u
29 INNER JOIN aliases AS a ON ( u.user_id = a.id AND type='a_vie' )
30 WHERE user_id = {?}", $uid);
31list($forlife, $promo) = $q->fetchOneRow();
32
33switch (Env::get('action')) {
34
35 case "ecole":
36 header("Content-type: image/jpeg");
37 readfile("/home/web/trombino/photos".$promo."/".$forlife.".jpg");
38 exit;
39 break;
40
41 case "valider":
42 $data = file_get_contents($_FILES['userfile']['tmp_name']);
43 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
44 $mimetype = substr($_FILES['userfile']['type'], 6);
45 unlink($_FILES['userfile']['tmp_name']);
46 $globals->xdb->execute(
47 "REPLACE INTO photo SET uid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
48 $uid, $mimetype, $data, $x, $y);
49 break;
50
51 case "supprimer":
52 $globals->xdb->execute('DELETE FROM photo WHERE uid = {?}', $uid);
53 break;
54}
55
56$page->assign('forlife', $forlife);
57$page->run();
58?>