You are here

function sharethis_block_view in ShareThis 7.2

Implements hook_block_view().

File

./sharethis.module, line 436
A module that adds one of the ShareThis widget to your website.

Code

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