function memcache_admin_permission in Zircon Profile 8.0
Same name and namespace in other branches
- 8 modules/memcache/memcache_admin/memcache_admin.module \memcache_admin_permission()
Implements hook_perm().
File
- modules/
memcache/ memcache_admin/ memcache_admin.module, line 24
Code
function memcache_admin_permission() {
return array(
'access memcache statistics' => array(
'title' => t('Access memcache statistics'),
),
'access slab cachedump' => array(
'title' => t('Access cachedump of memcache slab'),
'restrict access' => TRUE,
),
);
}