Example #1
0
<?php

use Plugins\Profiler\Profiler;
?>
<link rel="stylesheet" href="/Plugins/Profiler/style.css">
<?php 
$group_stats = Profiler::group_stats();
$group_cols = array('min', 'max', 'average', 'total');
$application_cols = array('min', 'max', 'average', 'current');
?>

<div class="kohana">
    <?php 
foreach (Profiler::groups() as $group => $benchmarks) {
    ?>
        <?php 
    if ($group) {
        ?>
            <table class="profiler">
                <tr class="group">
                    <th class="name" rowspan="2"><?php 
        echo ucfirst($group);
        ?>
</th>
                    <td class="time" colspan="4"><?php 
        echo number_format($group_stats[$group]['total']['time'], 6);
        ?>
 <abbr title="seconds">s</abbr></td>
                </tr>
                <tr class="group">
                    <td class="memory" colspan="4"><?php