?/debug/apc

This commit is contained in:
Michael Foster 2013-09-23 10:11:16 +10:00
parent ff4352d914
commit 39be89ba49
4 changed files with 39 additions and 0 deletions

View file

@ -2354,3 +2354,16 @@ function mod_debug_sql() {
mod_page(_('Debug: SQL'), 'mod/debug/sql.html', $args);
}
function mod_debug_apc() {
global $config;
if (!hasPermission($config['mod']['debug_apc']))
error($config['error']['noaccess']);
if ($config['cache']['enabled'] != 'apc')
error('APC is not enabled.');
$cached_vars = new APCIterator('user', '/^' . $config['cache']['prefix'] . '/');
mod_page(_('Debug: APC'), 'mod/debug/apc.html', array('cached_vars' => $cached_vars));
}