Remove Javascript call to undefined function changeOnlyReferent()
[platal.git] / classes / xorg.php
CommitLineData
a9cd2bab
FB
1<?php
2/***************************************************************************
ba6ae046 3 * Copyright (C) 2003-2013 Polytechnique.org *
a9cd2bab
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
22class Xorg extends Platal
23{
6d69b527
FB
24 public function __construct()
25 {
dce1ba39
RB
26 parent::__construct(
27 'auth',
28
29 'admin',
30 'api',
31 'axletter',
32 'bandeau',
33 'carnet',
34 'deltaten',
35 'email',
36 'epletter',
37 'events',
38 'forums',
39 'fusionax',
87d116c4 40 'fxletter',
dce1ba39
RB
41 'gadgets',
42 'geoloc',
43 'googleapps',
44 'lists',
45 'marketing',
46 'newsletter',
47 'openid',
48 'payment',
49 'platal',
50 'poison',
51 'profile',
52 'register',
53 'reminder',
54 'search',
55 'sharingapi',
56 'stats',
57 'survey',
58 'urlshortener'
59 );
6d69b527
FB
60 }
61
62 public function find_hook()
63 {
64 if ($this->path{0} >= 'A' && $this->path{0} <= 'Z') {
65 return self::wiki_hook();
66 }
67 return parent::find_hook();
68 }
69
26ba053e 70 public function force_login(PlPage $page)
a9cd2bab
FB
71 {
72 header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
73 if (S::logged()) {
74 $page->changeTpl('core/password_prompt_logged.tpl');
a9cd2bab
FB
75 } else {
76 $page->changeTpl('core/password_prompt.tpl');
a9cd2bab
FB
77 }
78 $page->assign_by_ref('platal', $this);
79 $page->run();
80 }
ff949e76
RB
81
82 public function setup_raven()
83 {
84 $sentry_dsn = self::globals()->core->sentry_dsn;
85
86 if (strlen($sentry_dsn) == 0) {
87 return null;
88 }
89
90 require_once('raven/lib/Raven/Autoloader.php');
91
92 Raven_Autoloader::register();
93
94 return new Raven_Client($sentry_dsn);
95 }
96
97 protected function report_error($error)
98 {
99 parent::report_error($error);
100
101 $raven = $this->setup_raven();
102 if ($raven != null) {
103 $raven->captureException($error);
104 }
105 }
a9cd2bab
FB
106}
107
108// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
109?>