function share42_block_info in Share42 - social sharing buttons 7.2
Same name and namespace in other branches
- 7 share42.module \share42_block_info()
Implements hook_block_info().
File
- ./
share42.module, line 52 - Main file for the Share42 module.
Code
function share42_block_info() {
$blocks['share42'] = array(
'info' => t('Share42 - social sharing buttons block'),
'cache' => DRUPAL_CACHE_GLOBAL,
);
return $blocks;
}