From fb3e14331fb87ba029564b48adc7e45b45f04505 Mon Sep 17 00:00:00 2001 From: "Michael - piratica.eu" Date: Sat, 26 Jan 2013 16:48:04 +0100 Subject: [PATCH] rendertime: Adding more variables for measuring performance. --- rendertime/rendertime.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/rendertime/rendertime.php b/rendertime/rendertime.php index 87a329019..0792ce05c 100755 --- a/rendertime/rendertime.php +++ b/rendertime/rendertime.php @@ -10,7 +10,6 @@ */ function rendertime_install() { - register_hook('init_1', 'addon/rendertime/rendertime.php', 'rendertime_init_1'); register_hook('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end'); } @@ -21,15 +20,15 @@ function rendertime_uninstall() { } function rendertime_init_1(&$a) { - global $rendertime_start; - - $rendertime_start = microtime(true); } function rendertime_page_end(&$a, &$o) { - global $rendertime_start; - $duration = round(microtime(true)-$rendertime_start, 3); + $duration = round(microtime(true)-$a->performance["start"], 3); - $o = $o.'
'.sprintf(t("This page took %s seconds to render"), $duration)."
"; + $o = $o.'
'.sprintf(t("Rendertime: Database: %s, Network: %s, Rendering: %s, Total: %s"), + round($a->performance["database"], 3), + round($a->performance["network"], 3), + round($a->performance["rendering"], 3), + $duration)."
"; }