dberroraction.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. /**
  3. * DB error action.
  4. *
  5. * PHP version 5
  6. *
  7. * @category Action
  8. * @package StatusNet
  9. * @author Evan Prodromou <evan@status.net>
  10. * @author Zach Copley <zach@status.net>
  11. * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  12. * @link http://status.net/
  13. *
  14. * StatusNet - the distributed open-source microblogging tool
  15. * Copyright (C) 2008, 2009, StatusNet, 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. if (!defined('STATUSNET') && !defined('LACONICA')) {
  31. exit(1);
  32. }
  33. require_once INSTALLDIR . '/lib/action/servererroraction.php';
  34. /**
  35. * Class for displaying DB Errors
  36. *
  37. * This only occurs if there's been a DB_DataObject_Error that's
  38. * reported through PEAR, so we try to avoid doing anything that connects
  39. * to the DB, so we don't trigger it again.
  40. *
  41. * @category Action
  42. * @package StatusNet
  43. * @author Evan Prodromou <evan@status.net>
  44. * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  45. * @link http://status.net/
  46. */
  47. class DBErrorAction extends ServerErrorAction
  48. {
  49. public $widgetOpts;
  50. public $scoped;
  51. function __construct($message='Error', $code=500)
  52. {
  53. parent::__construct($message, $code);
  54. }
  55. function title()
  56. {
  57. // TRANS: Page title for when a database error occurs.
  58. return _('Database error');
  59. }
  60. function getLanguage()
  61. {
  62. // Don't try to figure out user's language; just show the page
  63. return common_config('site', 'language');
  64. }
  65. function showPrimaryNav()
  66. {
  67. // don't show primary nav
  68. }
  69. }