You are here

function sharerich_block_info in Sharerich 7

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

Implements hook_block_info().

File

./sharerich.module, line 81

Code

function sharerich_block_info() {
  $blocks['sharerich'] = array(
    'info' => t('Sharerich'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  );
  return $blocks;
}