You are here

function follow_perm in Follow 6

Same name and namespace in other branches
  1. 5 follow.module \follow_perm()

Implementation of hook_perm().

File

./follow.module, line 81
Allows users to add links to their social network profiles.

Code

function follow_perm() {
  return array(
    'edit own follow links',
    'edit site follow links',
    'edit any user follow links',
    'administer follow',
    'change follow link titles',
  );
}