function quickbar_help_permission in Quickbar 7.2
Implementation of hook_permission()
File
- modules/
quickbar_help/ quickbar_help.module, line 6
Code
function quickbar_help_permission() {
return array(
'administer quickbar_help' => array(
'title' => t('Administer quickbar_help'),
'description' => t('TODO'),
),
'access quickbar_help' => array(
'title' => t('Access quickbar_help'),
'description' => t('TODO'),
),
);
}