You are here

function jquery_social_stream_block_save in jQuery social stream 7

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

Implements hook_block_save().

File

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

Code

function jquery_social_stream_block_save($delta = '', $edit = array()) {
  switch ($delta) {
    case 'jquery_social_stream':
      variable_set('jquery_social_stream_block', $edit);
      break;
  }
}