ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
frame_list.html.php
Go to the documentation of this file.
1<?php /* List file names & line numbers for all stack frames;
2 clicking these links/buttons will display the code view
3 for that particular frame */ ?>
4<?php foreach ($frames as $i => $frame): ?>
5 <div class="frame <?php echo ($i == 0 ? 'active' : '') ?>" id="frame-line-<?php echo $i ?>">
6 <div class="frame-method-info">
7 <span class="frame-index"><?php echo (count($frames) - $i - 1) ?>.</span>
8 <span class="frame-class"><?php echo $tpl->escape($frame->getClass() ?: '') ?></span>
9 <span class="frame-function"><?php echo $tpl->escape($frame->getFunction() ?: '') ?></span>
10 </div>
11
12 <span class="frame-file">
13 <?php echo ($frame->getFile(true) ?: '<#unknown>') ?><!--
14 --><span class="frame-line"><?php echo (int) $frame->getLine() ?></span>
15 </span>
16 </div>
17<?php endforeach ?>
global $tpl
Definition: ilias.php:8