You are here

function fblikebutton_perm in Facebook Like Button 6

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

Implementation of hook_perm().

File

./fblikebutton.module, line 103
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(
    'users may administer Like button',
    'users may administer Like button block',
    'users may access Like button',
  );
}