You are here

function sharerich_block_view in Sharerich 7

Same name and namespace in other branches
  1. 7.3 sharerich.module \sharerich_block_view()
  2. 7.2 sharerich.module \sharerich_block_view()

Implements hook_block_view().

File

./sharerich.module, line 93

Code

function sharerich_block_view($delta = '') {
  $block = array();
  switch ($delta) {
    case 'sharerich':
      $block['content'] = sharerich_get_buttons();
  }
  return $block;
}