X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-cache_stats.php;h=cedfb44fe2797ce09973e95b0e8f2d4727e061d5;hb=171923dfbd09758b7cbf58aff40c5a358407061a;hp=fd573cd974c24444ea1a1ab02f46d0f711fc8dd1;hpb=c8d76610eb94093d4eed4fcd8a6cb72e74c8f6d8;p=mailer.git diff --git a/inc/modules/admin/what-cache_stats.php b/inc/modules/admin/what-cache_stats.php index fd573cd974..cedfb44fe2 100644 --- a/inc/modules/admin/what-cache_stats.php +++ b/inc/modules/admin/what-cache_stats.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * 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 - 2012 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 * @@ -41,21 +41,19 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Activated? -if (ifStatsAreEnabled()) { +if (ifInternalStatsEnabled()) { // Prepare data for the template - $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); + loadTemplate('admin_cache_stats', FALSE, $content); } else { // Deactivated, which is good for performance - loadTemplate('admin_settings_saved', false, '{--ADMIN_CACHE_DB_STATS_DEACTIVATED--}'); + displayMessage('{--ADMIN_CACHE_DB_STATS_DEACTIVATED--}'); } // [EOF]