]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/dberroraction.php
0dc92490cdc70d8265e001eb81530b60856fb173
[quix0rs-gnu-social.git] / lib / dberroraction.php
1 <?php
2 /**
3  * DB error action.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  Laconica
9  * @author   Evan Prodromou <evan@controlyourself.ca>
10  * @author   Zach Copley <zach@controlyourself.ca>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://laconi.ca/
13  *
14  * Laconica - a distributed open-source microblogging tool
15  * Copyright (C) 2008, Controlez-Vous, Inc.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU Affero General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU Affero General Public License for more details.
26  *
27  * You should have received a copy of the GNU Affero General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  */
30
31 if (!defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/servererroraction.php';
36
37 /**
38  * Class for displaying DB Errors
39  *
40  * This only occurs if there's been a DB_DataObject_Error that's
41  * reported through PEAR, so we try to avoid doing anything that connects
42  * to the DB, so we don't trigger it again.
43  *
44  * @category Action
45  * @package  Laconica
46  * @author   Evan Prodromou <evan@controlyourself.ca>
47  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
48  * @link     http://laconi.ca/
49  */
50
51 class DBErrorAction extends ServerErrorAction
52 {
53     function __construct($message='Error', $code=500)
54     {
55         parent::__construct($message, $code);
56     }
57
58     function title()
59     {
60         return _('Database error');
61     }
62
63     function getLanguage()
64     {
65         // Don't try to figure out user's language; just show the page
66         return common_config('site', 'language');
67     }
68
69     function showPrimaryNav()
70     {
71         // don't show primary nav
72     }
73 }