function memcache_storage_permission in Memcache Storage 7
Implements hook_permission().
File
- ./
memcache_storage.module, line 43 - Provides hook implementation for Memcache Storage module.
Code
function memcache_storage_permission() {
return array(
'administer memcache storage' => array(
'title' => t('Administer Memcache storage'),
'description' => t('Manage Memcache storage module settings.'),
),
'view memcache storage debug' => array(
'title' => t('View Memcache Storage debug output'),
'description' => t('Allow user to see memcache I/O operations at the bottom of the page.'),
),
);
}