#1 - File: /views/tools/tools_analyzer_viewdump.php, line 77
75: $writeOffset = ($devAddr & 1) ? 0 : 1;
76: $devAddr >>= 1;
77: echo '<tr class="'.strtolower($mode).' d'.sprintf("%02X", $devAddr).' r'.sprintf("%02X", $regAddr).'">';
78: echo '<td>'.($rowNum++).'</td>';
79: echo '<td>'.$packets[$i][0][0].'</td>';
#2 - File: /Phej.php, line 628
626: }
627: // load the view
628: include ROOT_DIR.'/views/'.$view.'.php';
629: }
630: }
#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 681
679: }
680: // load the layout (view is accessible through $view variable)
681: include ROOT_DIR.'/layouts/'.$layout.'_layout.php';
682: }
683:
#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 273
271: if (!defined('VIEW')) define('VIEW', $view);
272:
273: $this -> controller -> $view($args);
274: } catch (Exception $e) {
275: 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) {