X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-cache_stats.php;h=f975bb299bcc2d1f597d3abe6d6ebdf5afd6ec4b;hb=53312d69c8cb5b7ea0c85909cb45356ad4f3bb0b;hp=ba73224b8f866777fda00f5b92f48e631261316e;hpb=cb20090aa0558f1b74f0e9f925f29819e8bb3a45;p=mailer.git diff --git a/inc/modules/admin/what-cache_stats.php b/inc/modules/admin/what-cache_stats.php index ba73224b8f..f975bb299b 100644 --- a/inc/modules/admin/what-cache_stats.php +++ b/inc/modules/admin/what-cache_stats.php @@ -14,12 +14,10 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -43,24 +41,21 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Activated? -if (getConfig('STATS_ENABLED') == 'Y') { - // Calculate total hits - $totalHits = (getStatsEntry('db_hits') + getStatsEntry('cache_hits')); - +if (ifStatsAreEnabled()) { // Prepare data for the template - $content['db_hits'] = translateComma(getStatsEntry('db_hits')); - $content['cache_hits'] = translateComma(getStatsEntry('cache_hits')); - $content['total_hits'] = translateComma($totalHits); - $content['cache_perc'] = translateComma((getStatsEntry('cache_hits') / $totalHits * 100)); + $content['db_hits'] = getStatsEntry('db_hits'); + $content['cache_hits'] = getStatsEntry('cache_hits'); + $content['total_hits'] = (getStatsEntry('db_hits') + getStatsEntry('cache_hits')); + $content['cache_perc'] = (getStatsEntry('cache_hits') / $content['total_hits'] * 100); // Load template loadTemplate('admin_cache_stats', false, $content); } else { // Deactivated, which is good for performance - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_CACHE_DB_STATS_DEACTIVATED')); + displayMessage('{--ADMIN_CACHE_DB_STATS_DEACTIVATED--}'); } // [EOF]