You are here

function sharebar_block_view in ShareBar 7.2

Same name and namespace in other branches
  1. 7 sharebar.module \sharebar_block_view()

Implements hook_block_view().

File

./sharebar.module, line 131
Various module information.

Code

function sharebar_block_view($delta = '') {
  $block = array();
  if (variable_get('sharebar_bar_onblock', TRUE)) {
    switch ($delta) {
      case 'sharebar':
        $block['content'] = sharebar_onblock();
        break;
    }
  }
  return $block;
}