You are here

function fblikebutton_block_info in Facebook Like Button 7

Same name and namespace in other branches
  1. 7.2 fblikebutton.module \fblikebutton_block_info()

Implementation of hook_block_info()

File

./fblikebutton.module, line 119
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_block_info() {
  $blocks['fblikebutton_block'] = array(
    'info' => t('FB Like button'),
  );
  return $blocks;
}