You are here

function fblikebutton_perm in Facebook Like Button 6.2

Same name and namespace in other branches
  1. 6 fblikebutton.module \fblikebutton_perm()

Implements of hook_perm().

File

./fblikebutton.module, line 122
Adds Facebook's "Like" button to each selected node type. Adds a block with a global static value where users can "Like" the URL set by admins.

Code

function fblikebutton_perm() {
  return array(
    'administer fblikebutton',
    'administer fblikebutton block',
    'access fblikebutton',
  );
}