source: trunk/Modules/Error/Error.php@ 873

Last change on this file since 873 was 873, checked in by chronos, 5 years ago
  • Modified: Improved code format.
File size: 1.9 KB
Line 
1<?php
2
3class ModuleError extends AppModule
4{
5 var $Encoding;
6 var $ShowError;
7 var $UserErrors;
8 var $ErrorHandler;
9
10 function __construct($System)
11 {
12 parent::__construct($System);
13 $this->Name = 'Error';
14 $this->Version = '1.0';
15 $this->Creator = 'Chronos';
16 $this->License = 'GNU/GPLv3';
17 $this->Description = 'Error logging and reporting';
18 $this->Dependencies = array('Log');
19
20 $this->ErrorHandler = new ErrorHandler();
21 }
22
23 function DoInstall()
24 {
25 }
26
27 function DoUnInstall()
28 {
29 }
30
31 function DoStart()
32 {
33 $this->ErrorHandler->ShowError = $this->System->Config['Web']['ShowPHPError'];
34 $this->ErrorHandler->OnError = array(array($this, 'DoOnError'));
35 $this->ErrorHandler->Start();
36 }
37
38 function DoStop()
39 {
40 $this->ErrorHandler->Stop();
41 }
42
43 function DoOnError($Error)
44 {
45 $this->System->ModuleManager->Modules['Log']->NewRecord('Error', 'Log', $Error);
46
47 //if ($Config['Web']['ErrorLogFile'] != '')
48 // error_log($Error, 3, $Config['Web']['ErrorLogFile']);
49 // Pošli mi zprávu (pokud je to kritická chyba)
50 //mail($Config['Web']['AdminEmail'], $Config['Web']['Title'].' - Chybové hlášení', $Error);
51 // Show error message
52 if ($this->ErrorHandler->ShowError == true)
53 {
54 if (array_key_exists('REMOTE_ADDR', $_SERVER))
55 {
56 echo('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>'."\n".
57 '<meta http-equiv="Content-Language" content="cs">'."\n".
58 '<meta http-equiv="Content-Type" content="text/html; charset='.$this->Encoding.'"></head><body>'."\n".
59 'Došlo k vnitřní chybě!<br/> O chybě byl uvědoměn správce webu a chybu brzy odstraní.<br/><br/>');
60 echo('<pre>'.$Error.'</pre><br/>'); // V případě ladění chybu i zobraz
61 echo('</body></html>');
62 } else
63 {
64 echo($Error);
65 }
66 }
67 }
68}
Note: See TracBrowser for help on using the repository browser.