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