function follow_perm in Follow 5
Same name and namespace in other branches
- 6 follow.module \follow_perm()
Implementation of hook_perm().
File
- ./
follow.module, line 67 - 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',
);
}