2013-01-26 00:22:46 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name: rendertime
|
|
|
|
* Description: Shows the time that was needed to render the current page
|
|
|
|
* Version: 0.1
|
|
|
|
* Author: Michael Vvogel <http://pirati.ca/profile/heluecht>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
function rendertime_install() {
|
|
|
|
register_hook('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function rendertime_uninstall() {
|
|
|
|
unregister_hook('init_1', 'addon/rendertime/rendertime.php', 'rendertime_init_1');
|
|
|
|
unregister_hook('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end');
|
|
|
|
}
|
|
|
|
|
|
|
|
function rendertime_init_1(&$a) {
|
|
|
|
}
|
|
|
|
|
|
|
|
function rendertime_page_end(&$a, &$o) {
|
|
|
|
|
2013-01-26 18:36:10 +01:00
|
|
|
$duration = microtime(true)-$a->performance["start"];
|
2013-01-26 00:22:46 +01:00
|
|
|
|
2013-01-27 14:00:28 +01:00
|
|
|
$o = $o.'<div class="renderinfo">'.sprintf(t("Performance: Database: %s, Network: %s, Rendering: %s, Parser: %s, I/O: %s, Other: %s, Total: %s"),
|
2013-01-26 16:48:04 +01:00
|
|
|
round($a->performance["database"], 3),
|
|
|
|
round($a->performance["network"], 3),
|
|
|
|
round($a->performance["rendering"], 3),
|
2013-01-26 18:36:10 +01:00
|
|
|
round($a->performance["parser"], 3),
|
|
|
|
round($a->performance["file"], 3),
|
|
|
|
round($duration - $a->performance["database"] - $a->performance["network"]
|
|
|
|
- $a->performance["rendering"] - $a->performance["parser"]
|
2013-01-27 14:00:28 +01:00
|
|
|
- $a->performance["file"], 3),
|
2013-02-06 08:03:10 +01:00
|
|
|
round($duration, 3)
|
|
|
|
//round($a->performance["markstart"], 3)
|
|
|
|
//round($a->performance["plugin"], 3)
|
|
|
|
)."</div>";
|
2013-01-27 14:00:28 +01:00
|
|
|
|
2013-01-26 00:22:46 +01:00
|
|
|
}
|