You are here

function facebookshare_perm in Facebook Share 6

Same name and namespace in other branches
  1. 6.3 facebookshare.module \facebookshare_perm()

Implements hook_perm()

File

./facebookshare.module, line 23
Adds a button to a node to share on a user's Facebook stream

Code

function facebookshare_perm() {
  return array(
    'administer facebookshare',
    'access facebookshare',
  );
}