function apc_permission in APC - Alternative PHP Cache 7
Implementation of hook_permission().
File
- ./
apc.module, line 72 - This integrates the drupal APC cache module.
Code
function apc_permission() {
return array(
'access apc statistics' => array(
'title' => t('Access apc statistics'),
'description' => t('Allows access to the statistics reports of APC.'),
),
);
}