You are here

function addtoany_perm in AddToAny Share Buttons 6.3

Same name and namespace in other branches
  1. 5.2 addtoany.module \addtoany_perm()
  2. 5 addtoany.module \addtoany_perm()
  3. 6 addtoany.module \addtoany_perm()
  4. 6.2 addtoany.module \addtoany_perm()

Implementation of hook_perm().

File

./addtoany.module, line 13
Standalone module file to handle AddToAny button integration

Code

function addtoany_perm() {
  $perms[] = 'administer addtoany';
  return $perms;
}