function addthis_perm in AddThis 5.2
Same name and namespace in other branches
- 6.3 addthis.module \addthis_perm()
- 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;
}