function _memcache_admin_default_bin in Memcache API and Integration 7
Same name and namespace in other branches
- 6 memcache_admin/memcache_admin.module \_memcache_admin_default_bin()
Helper function. Returns the bin name.
1 call to _memcache_admin_default_bin()
- memcache_admin_bin_mapping in memcache_admin/
memcache_admin.module - Helper function, reverse map the memcache_bins variable.
File
- memcache_admin/
memcache_admin.module, line 128 - For the collection and display of memcache stats.
Code
function _memcache_admin_default_bin($bin) {
if ($bin == 'default') {
return 'cache';
}
return $bin;
}