function _memcache_admin_stats_connections in Zircon Profile 8
Same name and namespace in other branches
- 8.0 modules/memcache/memcache_admin/memcache_admin.module \_memcache_admin_stats_connections()
 
1 call to _memcache_admin_stats_connections()
- memcache_admin_stats in modules/
memcache/ memcache_admin/ memcache_admin.module  - Memcache Stats page
 
File
- modules/
memcache/ memcache_admin/ memcache_admin.module, line 123  
Code
function _memcache_admin_stats_connections($stats) {
  return t('!current open of !total total', array(
    '!current' => number_format($stats['curr_connections']),
    '!total' => number_format($stats['total_connections']),
  ));
}