19 if (in_array(get_class($e), $this->dontReport)) {
23 if (!defined(
'CH_WSB_LOG_ERROR') || CH_WSB_LOG_ERROR) {
27 $bFullError = (!defined(
'CH_WSB_FULL_ERROR')) ?
false : CH_WSB_FULL_ERROR;
28 $this->
render($e, $bFullError);
30 $bEmailError = (!defined(
'CH_WSB_EMAIL_ERROR')) ?
true : CH_WSB_EMAIL_ERROR;
36 protected function log($e)
38 $s =
"\n--- " . date(
'c') .
"\n";
39 $s .=
"Type: " . get_class($e) .
"\n";
40 $s .=
"Message: " . $e->getMessage() .
"\n";
41 $s .=
"File: " . $e->getFile() .
"\n";
42 $s .=
"Line: " . $e->getLine() .
"\n";
47 file_put_contents(
$GLOBALS[
'dir'][
'tmp'] .
'error.log',
$s, FILE_APPEND);
54 protected function render($e, $bFullMsg =
false)
56 if ((php_sapi_name() ===
'cli')) {
65 <?
php if (!$bFullMsg): ?>
66 <div style=
"border:2px solid red;padding:4px;width:600px;margin:0px auto;">
67 <div style=
"text-align:center;background-color:transparent;color:#000;font-weight:bold;">
68 <?= (function_exists(
'_t') ?
_t(
'_Exception_user_msg') :
'A error occurred while loading the page. The system administrator has been notified.') ?>
72 <div style=
"border:2px solid red;padding:10px;width:90%;margin:0px auto;">
73 <h2 style=
"margin-top: 0px;"><?= (function_exists(
'_t') ?
_t(
'_Exception_uncaught_msg') :
'An uncaught exception was thrown') ?></h2>
75 <
table style=
"table-layout: fixed;">
77 <td style=
"font-weight: bold;">Type</td>
78 <td><?= get_class($e) ?></td>
81 <td style=
"font-weight: bold;">Message</td>
82 <td><?= $e->getMessage() ?></td>
85 <td style=
"font-weight: bold;">
File</td>
86 <td><?= $e->getFile() ?></td>
89 <td style=
"font-weight: bold;">Line</td>
90 <td><?= $e->getLine() ?></td>
95 <!--<?= nl2br($e->getTraceAsString()) ?>-->
113 $sMailBody =
_t(
'_Exception_uncaught_in_msg') .
" " . CH_WSB_URL_ROOT .
"<br /><br /> \n";
114 $sMailBody .=
"Type: " . get_class($e) .
"<br /><br /> ";
115 $sMailBody .=
"Message: " . $e->getMessage() .
"<br /><br /> ";
116 $sMailBody .=
"File: " . $e->getFile() .
"<br /><br /> ";
117 $sMailBody .=
"Line: " . $e->getLine() .
"<br /><br /> ";
120 $sMailBody .=
"<hr />Called script: " . $_SERVER[
'PHP_SELF'] .
"<br /> ";
121 $sMailBody .=
"<hr />Request parameters: <pre>" . print_r(
$_REQUEST,
true) .
" </pre>";
122 $sMailBody .=
"--\nAuto-report system\n";
124 if (!defined(
'CH_WSB_REPORT_EMAIl')) {
126 $bugReportEmail =
$site[
'bugReportMail'];
128 $bugReportEmail = CH_WSB_REPORT_EMAIL;
133 _t(
'_Exception_uncaught_in_msg') .
" " . CH_WSB_URL_ROOT,
147 foreach ($exception->getTrace()
as $frame) {
149 if (isset($frame[
'args'])) {
151 foreach ($frame[
'args']
as $arg) {
152 if (is_string($arg)) {
153 $args[] =
"'" . $arg .
"'";
154 } elseif (is_array($arg)) {
156 } elseif (is_null($arg)) {
158 } elseif (is_bool($arg)) {
159 $args[] = ($arg) ?
"true" :
"false";
160 } elseif (is_object($arg)) {
161 $args[] = get_class($arg);
162 } elseif (is_resource($arg)) {
163 $args[] = get_resource_type($arg);
168 $args = join(
", ", $args);
171 "#%s %s(%s): %s(%s)\n",