#1 - File: /views/tools/tools_analyzer_viewdump.php, line 113
111: for ($j = 0; $j < ceil($registerSize / 8) && $j < (count($packets) - $writeOffset); $j++) {
112: if ($registerEndian == 1 && $j > 0) $v <<= 8; // big-endian, so shift last byte over
113: $v += hexdec($packets[$i][$writeOffset + $j][3]); // add this byte to current value
114: }
115: $v >>= $bitEnd;
#2 - File: /Phej.php, line 634
632: }
633: // load the view
634: include ROOT_DIR.'/views/'.$view.'.php';
635: }
636: }
#3 - File: /layouts/wide_layout.php, line 46
44:
45: <div id="pageBody">
46: <?php $this -> loadView($view, $meta); ?>
47: </div>
48:
#4 - File: /Phej.php, line 687
685: }
686: // load the layout (view is accessible through $view variable)
687: include ROOT_DIR.'/layouts/'.$layout.'_layout.php';
688: }
689:
#5 - 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";
#6 - File: /Phej.php, line 280
278: if (!defined('VIEW')) define('VIEW', $view);
279:
280: $this -> controller -> $view($args);
281: } catch (Exception $e) {
282: phej_display_exception($this, $e);
#7 - File: /index.php, line 111
109:
110: session_start();
111: $phej -> run(FRONT_URI);
112:
113: } catch (Exception $e) {