You are here

function memcache_status_permission in Memcache Status 7

Same name and namespace in other branches
  1. 8 memcache_status.module \memcache_status_permission()

Implements hook_permission().

File

./memcache_status.module, line 27
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,
    ),
  );
}