2013-01-25 23:22:46 +00: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 17:36:10 +00:00
|
|
|
$duration = microtime(true)-$a->performance["start"];
|
2013-01-25 23:22:46 +00:00
|
|
|
|
2016-09-15 09:52:30 +00:00
|
|
|
$ignored_modules = array("fbrowser");
|
|
|
|
$ignored = in_array($a->module, $ignored_modules);
|
|
|
|
|
|
|
|
if (is_site_admin() AND ($_GET["mode"] != "minimal") AND !$a->is_mobile AND !$a->is_tablet AND !$ignored) {
|
2016-08-27 09:13:44 +00:00
|
|
|
$o = $o.'<div class="renderinfo">'.sprintf(t("Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s"),
|
|
|
|
round($a->performance["database"] - $a->performance["database_write"], 3),
|
|
|
|
round($a->performance["database_write"], 3),
|
|
|
|
round($a->performance["network"], 2),
|
|
|
|
round($a->performance["rendering"], 2),
|
|
|
|
round($a->performance["parser"], 2),
|
|
|
|
round($a->performance["file"], 2),
|
|
|
|
round($duration - $a->performance["database"]
|
|
|
|
- $a->performance["network"] - $a->performance["rendering"]
|
|
|
|
- $a->performance["parser"] - $a->performance["file"], 2),
|
|
|
|
round($duration, 2)
|
2013-02-06 07:03:10 +00:00
|
|
|
//round($a->performance["markstart"], 3)
|
|
|
|
//round($a->performance["plugin"], 3)
|
|
|
|
)."</div>";
|
2013-01-27 13:00:28 +00:00
|
|
|
|
2016-01-17 13:56:05 +00:00
|
|
|
if (get_config("rendertime", "callstack")) {
|
|
|
|
$o .= "<pre>";
|
2016-08-27 09:13:44 +00:00
|
|
|
$o .= "\nDatabase Read:\n";
|
2016-01-17 13:56:05 +00:00
|
|
|
foreach ($a->callstack["database"] AS $func => $time) {
|
|
|
|
$time = round($time, 3);
|
|
|
|
if ($time > 0)
|
|
|
|
$o .= $func.": ".$time."\n";
|
|
|
|
}
|
2016-08-27 09:13:44 +00:00
|
|
|
$o .= "\nDatabase Write:\n";
|
|
|
|
foreach ($a->callstack["database_write"] AS $func => $time) {
|
|
|
|
$time = round($time, 3);
|
|
|
|
if ($time > 0)
|
|
|
|
$o .= $func.": ".$time."\n";
|
|
|
|
}
|
2016-01-17 13:56:05 +00:00
|
|
|
|
|
|
|
$o .= "\nNetwork:\n";
|
|
|
|
foreach ($a->callstack["network"] AS $func => $time) {
|
|
|
|
$time = round($time, 3);
|
|
|
|
if ($time > 0)
|
|
|
|
$o .= $func.": ".$time."\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= "</pre>";
|
|
|
|
}
|
|
|
|
}
|
2013-01-25 23:22:46 +00:00
|
|
|
}
|