You are here

function _memcache_admin_default_bin in Memcache API and Integration 6

Same name and namespace in other branches
  1. 7 memcache_admin/memcache_admin.module \_memcache_admin_default_bin()
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 118

Code

function _memcache_admin_default_bin($bin) {
  if ($bin == 'default') {
    return 'cache';
  }
  return $bin;
}