You are here

function jquery_social_stream_block_view in jQuery social stream 7.2

Same name and namespace in other branches
  1. 7 jquery_social_stream.module \jquery_social_stream_block_view()

Implements hook_block_view().

File

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

Code

function jquery_social_stream_block_view($delta = '') {
  switch ($delta) {
    case 'jquery_social_stream':
      $conf = variable_get('jquery_social_stream_block', array());
      return jquery_social_stream_block_content($conf);
  }
}