function activity_perm in Activity 6
Same name and namespace in other branches
- 5.4 activity.module \activity_perm()
- 5 activity.module \activity_perm()
- 5.2 activity.module \activity_perm()
- 5.3 activity.module \activity_perm()
- 6.2 activity.module \activity_perm()
Implementation of hook_perm().
File
- ./
activity.module, line 15 - activity.module
Code
function activity_perm() {
return array(
'administer activity',
'hide activity',
'delete activity',
'view own activity',
'view public activity',
'view activity comments',
'create activity comments',
);
}