function authcache_example_permission in Authenticated User Page Caching (Authcache) 7
File
- modules/
authcache_example/ authcache_example.module, line 43 - authcache_example.module
Code
function authcache_example_permission() {
return array(
'administer authcache example' => array(
'title' => t('Administer Authcache Example Block'),
'description' => t('Allow user to edit any authcache example block'),
),
'edit own authcache example block' => array(
'title' => t('edit own authcache example block'),
'description' => t('Allow users to edit authcache example block.'),
),
);
}