function views_cache_bully_permission in Views cache bully 8
Same name and namespace in other branches
- 7.3 views_cache_bully.module \views_cache_bully_permission()
Implements hook_permission().
File
- ./
views_cache_bully.module, line 35 - Module file for views_cache_bully.
Code
function views_cache_bully_permission() {
return array(
'administer views cache bully' => array(
'title' => t('Administer Views Cache Bully'),
'description' => t('Perform administration tasks for Views Cache Bully.'),
),
);
}