| Name | Size | Mode | Actions |
|---|---|---|---|
| Benchmark.php | 2949 | 0644 | editdlrm |
| CodeIgniter.php | 11392 | 0644 | editdlrm |
| Common.php | 13417 | 0644 | editdlrm |
| Config.php | 8157 | 0644 | editdlrm |
| Controller.php | 1567 | 0644 | editdlrm |
| Exceptions.php | 4695 | 0644 | editdlrm |
| Hooks.php | 4697 | 0644 | editdlrm |
| index.html | 114 | 0644 | editdlrm |
| Input.php | 18324 | 0644 | editdlrm |
| Lang.php | 3632 | 0644 | editdlrm |
| Loader.php | 30576 | 0644 | editdlrm |
| Model.php | 1190 | 0644 | editdlrm |
| Output.php | 12935 | 0644 | editdlrm |
| Router.php | 12394 | 0644 | editdlrm |
| Security.php | 22006 | 0644 | editdlrm |
| URI.php | 14443 | 0644 | editdlrm |
| Utf8.php | 3584 | 0644 | editdlrm |
/home/aqcert/public_html/admin/tinymce/js/tinymce/plugins/jbimages/ci/system/core/Exceptions.php (4695B)
'.implode('
', ( ! is_array($message)) ? array($message) : $message).'
'; if (ob_get_level() > $this->ob_level + 1) { ob_end_flush(); } ob_start(); include(APPPATH.'errors/'.$template.'.php'); $buffer = ob_get_contents(); ob_end_clean(); return $buffer; } // -------------------------------------------------------------------- /** * Native PHP error handler * * @access private * @param string the error severity * @param string the error string * @param string the error filepath * @param string the error line number * @return string */ function show_php_error($severity, $message, $filepath, $line) { $severity = ( ! isset($this->levels[$severity])) ? $severity : $this->levels[$severity]; $filepath = str_replace("\\", "/", $filepath); // For safety reasons we do not show the full file path if (FALSE !== strpos($filepath, '/')) { $x = explode('/', $filepath); $filepath = $x[count($x)-2].'/'.end($x); } if (ob_get_level() > $this->ob_level + 1) { ob_end_flush(); } ob_start(); include(APPPATH.'errors/error_php.php'); $buffer = ob_get_contents(); ob_end_clean(); echo $buffer; } } // END Exceptions Class /* End of file Exceptions.php */ /* Location: ./system/core/Exceptions.php */