summaryrefslogtreecommitdiff
path: root/framework/views/no/profile-summary.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/views/no/profile-summary.php')
-rw-r--r--framework/views/no/profile-summary.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/framework/views/no/profile-summary.php b/framework/views/no/profile-summary.php
new file mode 100644
index 0000000..24e71e1
--- /dev/null
+++ b/framework/views/no/profile-summary.php
@@ -0,0 +1,41 @@
+<!-- start profiling summary -->
+<table class="yiiLog" width="100%" cellpadding="2" style="border-spacing:1px;font:11px Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;color:#666666;">
+ <tr>
+ <th style="background:black;color:white;" colspan="6">
+ Resultat av profilering
+ (Tid: <?php echo sprintf('%0.5f',Yii::getLogger()->getExecutionTime()); ?>s,
+ Minnebruk: <?php echo number_format(Yii::getLogger()->getMemoryUsage()/1024); ?>KB)
+ </th>
+ </tr>
+ <tr style="background-color: #ccc;">
+ <th>Funksjon</th>
+ <th>Antall</th>
+ <th>Totalt (sek)</th>
+ <th>Gjennomsnitt (sek)</th>
+ <th>Min (sek)</th>
+ <th>Maks (sek)</th>
+ </tr>
+<?php
+foreach($data as $index=>$entry)
+{
+ $color=($index%2)?'#F5F5F5':'#FFFFFF';
+ $proc=CHtml::encode($entry[0]);
+ $min=sprintf('%0.5f',$entry[2]);
+ $max=sprintf('%0.5f',$entry[3]);
+ $total=sprintf('%0.5f',$entry[4]);
+ $average=sprintf('%0.5f',$entry[4]/$entry[1]);
+
+ echo <<<EOD
+ <tr style="background:{$color}">
+ <td>{$proc}</td>
+ <td align="center">{$entry[1]}</td>
+ <td align="center">{$total}</td>
+ <td align="center">{$average}</td>
+ <td align="center">{$min}</td>
+ <td align="center">{$max}</td>
+ </tr>
+EOD;
+}
+?>
+</table>
+<!-- end of profiling summary --> \ No newline at end of file