314c311a |
1 | <?php |
2 | /** |
3 | * Fichier backend RSS - Appel la vue associée au template backend.html |
4 | * |
5 | * La même opération est possible en utilisant : index.php?page=backend |
6 | * |
7 | * PHP versions 4 et 5 |
8 | * |
9 | * LODEL - Logiciel d'Edition ELectronique. |
10 | * |
11 | * Copyright (c) 2001-2002, Ghislain Picard, Marin Dacos |
12 | * Copyright (c) 2003, Ghislain Picard, Marin Dacos, Luc Santeramo, Nicolas Nutten, Anne Gentil-Beccot |
13 | * Copyright (c) 2004, Ghislain Picard, Marin Dacos, Luc Santeramo, Anne Gentil-Beccot, Bruno Cénou |
14 | * Copyright (c) 2005, Ghislain Picard, Marin Dacos, Luc Santeramo, Gautier Poupeau, Jean Lamy, Bruno Cénou |
15 | * Copyright (c) 2006, Marin Dacos, Luc Santeramo, Bruno Cénou, Jean Lamy, Mikaël Cixous, Sophie Malafosse |
16 | * Copyright (c) 2007, Marin Dacos, Bruno Cénou, Sophie Malafosse, Pierre-Alain Mignot |
17 | * Copyright (c) 2008, Marin Dacos, Bruno Cénou, Pierre-Alain Mignot, Inès Secondat de Montesquieu, Jean-François Rivière |
18 | * Copyright (c) 2009, Marin Dacos, Bruno Cénou, Pierre-Alain Mignot, Inès Secondat de Montesquieu, Jean-François Rivière |
19 | * |
20 | * Home page: http://www.lodel.org |
21 | * |
22 | * E-Mail: lodel@lodel.org |
23 | * |
24 | * All Rights Reserved |
25 | * |
26 | * This program is free software; you can redistribute it and/or modify |
27 | * it under the terms of the GNU General Public License as published by |
28 | * the Free Software Foundation; either version 2 of the License, or |
29 | * (at your option) any later version. |
30 | * |
31 | * This program is distributed in the hope that it will be useful, |
32 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
33 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
34 | * GNU General Public License for more details. |
35 | * |
36 | * You should have received a copy of the GNU General Public License |
37 | * along with this program; if not, write to the Free Software |
38 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
39 | * |
40 | * @author Ghislain Picard |
41 | * @author Jean Lamy |
42 | * @copyright 2001-2002, Ghislain Picard, Marin Dacos |
43 | * @copyright 2003, Ghislain Picard, Marin Dacos, Luc Santeramo, Nicolas Nutten, Anne Gentil-Beccot |
44 | * @copyright 2004, Ghislain Picard, Marin Dacos, Luc Santeramo, Anne Gentil-Beccot, Bruno Cénou |
45 | * @copyright 2005, Ghislain Picard, Marin Dacos, Luc Santeramo, Gautier Poupeau, Jean Lamy, Bruno Cénou |
46 | * @copyright 2006, Marin Dacos, Luc Santeramo, Bruno Cénou, Jean Lamy, Mikaël Cixous, Sophie Malafosse |
47 | * @copyright 2007, Marin Dacos, Bruno Cénou, Sophie Malafosse, Pierre-Alain Mignot |
48 | * @copyright 2008, Marin Dacos, Bruno Cénou, Pierre-Alain Mignot, Inès Secondat de Montesquieu, Jean-François Rivière |
49 | * @copyright 2009, Marin Dacos, Bruno Cénou, Pierre-Alain Mignot, Inès Secondat de Montesquieu, Jean-François Rivière |
50 | * @licence http://www.gnu.org/copyleft/gpl.html |
51 | * @version CVS:$Id: |
52 | * @package lodel/source |
53 | */ |
54 | |
55 | require 'siteconfig.php'; |
56 | |
57 | try |
58 | { |
59 | include 'auth.php'; |
60 | authenticate(); |
61 | |
62 | View::getView()->renderCached('backend'); |
63 | exit; |
64 | } |
65 | catch(LodelException $e) |
66 | { |
67 | echo $e->getContent(); |
68 | exit(); |
69 | } |
70 | ?> |