Commit | Line | Data |
---|---|---|
5144e5e3 FB |
1 | <?php |
2 | /*************************************************************************** | |
c441aabe | 3 | * Copyright (C) 2003-2014 Polytechnique.org * |
5144e5e3 FB |
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 | class XorgPage extends PlPage | |
23 | { | |
63954a5c RB |
24 | protected $forced_skin = null; |
25 | protected $default_skin = null; | |
26 | ||
5144e5e3 FB |
27 | public function __construct() |
28 | { | |
8e18c1a2 | 29 | global $globals; |
5144e5e3 FB |
30 | parent::__construct(); |
31 | ||
32 | // Set the default page | |
33 | $this->changeTpl('platal/index.tpl'); | |
40324482 FB |
34 | if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) { |
35 | $this->addJsLink('json2.js'); | |
36 | } | |
b7bad73e | 37 | $this->addJsLink('jquery.xorg.js'); |
e97df22e | 38 | $this->addJsLink('overlib.js'); |
e5b254d5 | 39 | $this->addJsLink('core.js'); |
4c92db48 | 40 | $this->addJsLink('xorg.js'); |
8e18c1a2 NI |
41 | if ($globals->core->sentry_js_dsn) { |
42 | $this->addJsLink('raven.min.js'); | |
43 | } | |
ff996dd2 | 44 | $this->setTitle('le site des élèves et anciens élèves de l\'École polytechnique'); |
901d6603 | 45 | if (S::logged() && S::user()->checkPerms('admin')) { |
20b087ff FB |
46 | $types = array(S::user()->type); |
47 | $perms = DirEnum::getOptions(DirEnum::ACCOUNTTYPES); | |
48 | ksort($perms); | |
49 | foreach ($perms as $type => $perm) { | |
50 | if (!empty($perm) && $type != $types[0]) { | |
51 | $types[] = $type; | |
52 | } | |
53 | } | |
54 | $this->assign('account_types_list', $types); | |
b47cc6f0 FB |
55 | |
56 | $skins = DirEnum::getOptions(DirEnum::SKINS); | |
57 | asort($skins); | |
58 | $this->assign('skin_list', $skins); | |
20b087ff | 59 | } |
5144e5e3 FB |
60 | } |
61 | ||
63954a5c RB |
62 | /** Force the skin to use, bypassing user choice. |
63 | * Typically used for the 'register' page. | |
64 | * @param $skin The skin to use. | |
65 | */ | |
66 | public function forceSkin($skin) | |
67 | { | |
68 | $this->forced_skin = $skin; | |
69 | } | |
70 | ||
71 | /** Choose another 'default' skin. | |
72 | * Typically used for the 'Auth Groupe X' login page. | |
73 | * @param $skin The default skin to use. | |
74 | */ | |
75 | public function setDefaultSkin($skin) | |
76 | { | |
77 | $this->default_skin = $skin; | |
78 | } | |
79 | ||
5144e5e3 FB |
80 | public function run() |
81 | { | |
82 | global $globals, $platal; | |
63954a5c RB |
83 | if ($this->forced_skin !== null) { |
84 | $skin = $this->forced_skin . '.tpl'; | |
5144e5e3 | 85 | } else { |
63954a5c RB |
86 | if ($this->default_skin === null) { |
87 | $default_skin = $globals->skin; | |
88 | } else { | |
89 | $default_skin = $this->default_skin; | |
90 | } | |
91 | $skin = S::v('skin', $default_skin . '.tpl'); | |
5144e5e3 FB |
92 | } |
93 | $this->_run('skin/' . $skin); | |
94 | } | |
95 | } | |
96 | ||
448c8cdc | 97 | // vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8: |
5144e5e3 | 98 | ?> |