You are here

function sharethis_block_block_info in Sharethis block 7

Implements hook_block_info().

File

./sharethis_block.module, line 25
Hook implementations for the sharethis_block module.

Code

function sharethis_block_block_info() {
  $blocks = [];
  $blocks['sharethis'] = [
    'info' => t('Sharethis block'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  ];
  return $blocks;
}