You are here

function profile2_diff_block_save in Profile 2 7.2

Implements hook_block_save().

File

contrib/profile2_diff.module, line 268
Provides functionality to show a diff between two profile2 revisions.

Code

function profile2_diff_block_save($delta = '', $edit = array()) {
  switch ($delta) {
    case 'inline':
      variable_set('profile2_diff_show_diff_inline_types', $edit['profile_types']);
      break;
  }
}