function memcache_status_permission in Memcache Status 8
Same name and namespace in other branches
- 7 memcache_status.module \memcache_status_permission()
Implements hook_permission().
File
- ./
memcache_status.module, line 26 - Memcache Status module hooks.
Code
function memcache_status_permission() {
return array(
'access memcache status' => array(
'title' => t('Access Memcache status'),
'description' => t('View cache reports and flush memcache servers.'),
'restrict access' => TRUE,
),
);
}