Ejemplo n.º 1
0
        ?>
                        <span class="debug-method"><?php 
        echo $trace['method'];
        ?>
</span>
                    <?php 
    }
    ?>
                </td>
                <td class="trace-file">
                    <abbr title="<?php 
    echo $trace['file'];
    ?>
">
                        <span class="debug-file"><?php 
    echo path_alias($trace['file']);
    ?>
</span>:
                        <span class="debug-line"><?php 
    echo $trace['line'];
    ?>
</span>
                    </abbr>
                </td>
            </tr>

            <?php 
    if ($trace['args']) {
        ?>
                <tr id="titon-args-<?php 
        echo $rand;
Ejemplo n.º 2
0
<div class="titon-<?php 
echo isset($dump) ? 'dump' : 'debug';
?>
">
    <?php 
if ($file) {
    ?>
        <div class="debug-head">
            <abbr title="<?php 
    echo $file;
    ?>
">
                <span class="debug-file"><?php 
    echo path_alias($file);
    ?>
</span>:
                <span class="debug-line"><?php 
    echo $line;
    ?>
</span>
            </abbr>
        </div>
    <?php 
}
?>

    <?php 
foreach ($vars as $var) {
    ?>
        <div class="debug-output">
            <?php 
Ejemplo n.º 3
0
</span>:
        <?php 
}
?>

        <span class="debug-message"><?php 
echo esc($exception->getMessage());
?>
</span>

        <abbr title="<?php 
echo $exception->getFile();
?>
">
            <span class="debug-file"><?php 
echo path_alias($exception->getFile());
?>
</span>:
            <span class="debug-line"><?php 
echo $exception->getLine();
?>
</span>
        </abbr>
    </div>

    <?php 
if ($backtrace) {
    ?>
        <div class="debug-body" id="titon-inspect-backtrace" style="display: none">
            <?php 
    echo $backtrace;