You are here

function facebook_comments_block_block_info in Facebook Comments Block 7.2

Same name and namespace in other branches
  1. 7 facebook_comments_block.module \facebook_comments_block_block_info()

Implements hook_block_info().

File

./facebook_comments_block.module, line 10
Code for the Facebook Comments Block module.

Code

function facebook_comments_block_block_info() {
  $blocks = array();
  $blocks['fb_comments'] = array(
    'info' => t('Facebook Comments'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}