You are here

function socbutt_block_info in Bootstrap Social Sharing Buttons 7

Implements hook_block_info().

File

./socbutt.module, line 61

Code

function socbutt_block_info() {
  $blocks = array();
  $blocks['vertical'] = array(
    'info' => t('Social buttons: vertical layout'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  );
  $blocks['horizontal'] = array(
    'info' => t('Social buttons: horizontal layout'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  );
  return $blocks;
}