You are here

function jquery_social_stream_block_info in jQuery social stream 7

Same name and namespace in other branches
  1. 7.2 jquery_social_stream.module \jquery_social_stream_block_info()

Implements hook_block_info().

File

./jquery_social_stream.module, line 75
Code for the Campaign social media module.

Code

function jquery_social_stream_block_info() {
  $blocks = array();
  $blocks['jquery_social_stream'] = array(
    'info' => t('jQuery social stream'),
  );
  return $blocks;
}