You are here

function jquery_social_stream_block_configure in jQuery social stream 7

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

Implements hook_block_configure().

File

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

Code

function jquery_social_stream_block_configure($delta = '') {
  switch ($delta) {
    case 'jquery_social_stream':
      $conf = variable_get('jquery_social_stream_block', array());
      if (empty($conf['id'])) {
        $conf['id'] = 'block-jquery-social-stream';
      }
      return jquery_social_stream_settings_form($conf);
  }
}