function hosting_task_perm in Hosting 6.2
Same name and namespace in other branches
- 5 task/hosting_task.module \hosting_task_perm()
Implementation of hook_perm()
File
- task/
hosting_task.module, line 276 - Web server node type is defined here.
Code
function hosting_task_perm() {
return array(
'administer tasks',
'create backup task',
'create restore task',
'create disable task',
'create enable task',
'create delete task',
'create verify task',
'create lock task',
'create unlock task',
'create login-reset task',
'create backup-delete task',
'view own tasks',
'view task',
'access task logs',
'retry failed tasks',
'update status of tasks',
'cancel own tasks',
);
}