You are here

function sharethis_block_block_view in ShareThis 7

Implementation of hook_block_view().

File

sharethis_block/sharethis_block.module, line 12

Code

function sharethis_block_block_view($delta = '') {
  $block = array();
  switch ($delta) {
    case 'sharethis_block':
      $block['content'] = sharethis_block_contents();
      break;
  }
  return $block;
}