You are here

function addthis_perm in AddThis 5.2

Same name and namespace in other branches
  1. 6.3 addthis.module \addthis_perm()
  2. 6.2 addthis.module \addthis_perm()

Implementation of hook_perm().

File

./addthis.module, line 11
Stand alone module file to handle AddThis button integration

Code

function addthis_perm() {
  $perms[] = 'administer addthis';
  $perms[] = 'view addthis';
  return $perms;
}