function background_process_permission in Background Process 7
Same name and namespace in other branches
- 8 background_process.module \background_process_permission()
- 7.2 background_process.module \background_process_permission()
Implements hook_permission().
File
- ./
background_process.module, line 96
Code
function background_process_permission() {
return array(
'administer background process' => array(
'title' => t('Administer background processes'),
'description' => t('Perform administration tasks for background processes.'),
),
);
}