diff options
Diffstat (limited to 'framework/views/bg/profile-callstack.php')
| -rw-r--r-- | framework/views/bg/profile-callstack.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/framework/views/bg/profile-callstack.php b/framework/views/bg/profile-callstack.php new file mode 100644 index 0000000..ccca138 --- /dev/null +++ b/framework/views/bg/profile-callstack.php @@ -0,0 +1,30 @@ +<!-- start profiling callstack --> +<table 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="2"> + Обобщен доклад от профилирането + </th> + </tr> + <tr style="background-color: #ccc;"> + <th>Процедура</th> + <th>Време (на)</th> + </tr> +<?php +foreach($data as $index=>$entry) +{ + $color=($index%2)?'#F5F5F5':'#EBF8FE'; + list($proc,$time,$level)=$entry; + $proc=CHtml::encode($proc); + $time=sprintf('%0.5f',$time); + $spaces=str_repeat(' ',$level*8); + + echo <<<EOD + <tr style="background:{$color}"> + <td>{$spaces}{$proc}</td> + <td align="center">{$time}</td> + </tr> +EOD; +} +?> +</table> +<!-- end of profiling callstack --> |
