You are here

function activity_perm in Activity 6

Same name and namespace in other branches
  1. 5.4 activity.module \activity_perm()
  2. 5 activity.module \activity_perm()
  3. 5.2 activity.module \activity_perm()
  4. 5.3 activity.module \activity_perm()
  5. 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',
  );
}