* @param $extraData Extra information from exceptions
* @param $silentMode Wether not silent mode is turned on
* @return void
- * @todo This method is old code and needs heavy rewrite
+ * @todo This method is old code and needs heavy rewrite and should be moved to ApplicationHelper
*/
public static final function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) {
// Is this method already called?
$backtraceArray = debug_backtrace();
$backtrace = '';
foreach ($backtraceArray as $key => $trace) {
- if (!isset($trace['file'])) $trace['file'] = __FILE__;
- if (!isset($trace['line'])) $trace['line'] = __LINE__;
- if (!isset($trace['args'])) $trace['args'] = array();
+ // Set missing array elements
+ if (!isset($trace['file'])) {
+ $trace['file'] = __FILE__;
+ } // END - if
+ if (!isset($trace['line'])) {
+ $trace['line'] = __LINE__;
+ } // END - if
+ if (!isset($trace['args'])) {
+ $trace['args'] = array();
+ } // END - if
+
+ // Add the traceback path to the final output
$backtrace .= sprintf("<span class=\"backtrace_file\">%s</span>:%d, <span class=\"backtrace_function\">%s(%d)</span><br />\n",
basename($trace['file']),
$trace['line'],