#0 - File: /views/tools/tools_analyzer_viewdump.php, line 62
60: for ($i = 0; $i < count($packets); $i++) {
61: if (!isset($packets[$i])) continue; // sometimes malformed data makes it into these things
62: $devAddr = hexdec($packets[$i][0][2]);
63: $nextPacket = 0;
64: if (count($packets[$i]) == 1 && ($devAddr & 1) == 0) {
#1 - Function: phej_exception_error_handler
No source code available
#2 - File: /views/tools/tools_analyzer_viewdump.php, line 62
60: for ($i = 0; $i < count($packets); $i++) {
61: if (!isset($packets[$i])) continue; // sometimes malformed data makes it into these things
62: $devAddr = hexdec($packets[$i][0][2]);
63: $nextPacket = 0;
64: if (count($packets[$i]) == 1 && ($devAddr & 1) == 0) {
#3 - File: /Phej.php, line 628
626: }
627: // load the view
628: include ROOT_DIR.'/views/'.$view.'.php';
629: }
630: }
#4 - File: /layouts/wide_layout.php, line 46
44:
45: <div id="pageBody">
46: <?php $this -> loadView($view, $meta); ?>
47: </div>
48:
#5 - File: /Phej.php, line 681
679: }
680: // load the layout (view is accessible through $view variable)
681: include ROOT_DIR.'/layouts/'.$layout.'_layout.php';
682: }
683:
#6 - File: /controllers/tools_controller.php, line 71
69:
70: $this -> phej -> loadPlugin('jquery_balloon');
71: $this -> layoutView("tools/tools_analyzer_viewdump", 'wide', $meta);
72: } else {
73: $meta["page_title"] = "I2C Protocol Analyzer | I2C Device Library";
#7 - File: /Phej.php, line 273
271: if (!defined('VIEW')) define('VIEW', $view);
272:
273: $this -> controller -> $view($args);
274: } catch (Exception $e) {
275: phej_display_exception($this, $e);
#8 - File: /index.php, line 111
109:
110: session_start();
111: $phej -> run(FRONT_URI);
112:
113: } catch (Exception $e) {