minor things to make wiki more readable
[platal.git] / htdocs / webredirect.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_skinned_page('webredirect.tpl', AUTH_MDP);
24
25$log =& Session::getMixed('log');
26$url = Env::get('url');
27
28if ((Env::get('submit') == 'Valider' or Env::get('submit') == 'Modifier') and Env::has('url')) {
29 if ($globals->xdb->execute('UPDATE auth_user_quick SET redirecturl = {?} WHERE user_id = {?}',
30 $url, Session::getInt('uid')))
31 {
32 $log->log('carva_add', 'http://'.Env::get('url'));
33 $page->trig("Redirection activée vers <a href='http://$url'>$url</a>");
34 } else {
35 $page->trig('Erreur de mise à jour');
36 }
37} elseif (Env::get('submit') == "Supprimer") {
38 if ($globals->xdb->execute("UPDATE auth_user_quick SET redirecturl = '' WHERE user_id = {?}", Session::getInt('uid')))
39 {
40 $log->log("carva_del", $url);
41 Post::kill('url');
42 $page->trig('Redirection supprimée');
43 } else {
44 $page->trig('Erreur de suppression');
45 }
46}
47
48
49$res = $globals->xdb->query('SELECT redirecturl FROM auth_user_quick WHERE user_id = {?}', Session::getInt('uid'));
50$page->assign('carva', $res->fetchOneCell());
51
52$page->run();
53?>