*
 */
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) {
	$duration = microtime(true)-$a->performance["start"];
	if (is_site_admin() AND ($_GET["mode"] != "minimal"))
		$o = $o.'
'.sprintf(t("Performance: Database: %s, Network: %s, Rendering: %s, Parser: %s, I/O: %s, Other: %s, Total: %s"),
						round($a->performance["database"], 3),
						round($a->performance["network"], 3),
						round($a->performance["rendering"], 3),
						round($a->performance["parser"], 3),
						round($a->performance["file"], 3),
						round($duration - $a->performance["database"] - $a->performance["network"]
							 - $a->performance["rendering"] - $a->performance["parser"]
							 - $a->performance["file"], 3),
						round($duration, 3)
						//round($a->performance["markstart"], 3)
						//round($a->performance["plugin"], 3)
						)."
";
}