function _memcache_admin_default_bin in Zircon Profile 8
Same name and namespace in other branches
- 8.0 modules/memcache/memcache_admin/memcache_admin.module \_memcache_admin_default_bin()
1 call to _memcache_admin_default_bin()
- memcache_admin_bin_mapping in modules/
memcache/ memcache_admin/ memcache_admin.module - Helper function, reverse map the memcache_bins variable.
File
- modules/
memcache/ memcache_admin/ memcache_admin.module, line 116
Code
function _memcache_admin_default_bin($bin) {
if ($bin == 'default') {
return 'cache';
}
return $bin;
}