function addthis_block_info in AddThis 7.2
Same name and namespace in other branches
- 7.4 includes/addthis.block.inc \addthis_block_info()
Implement hook_block_info();
File
- ./
addthis.module, line 62 - Stand alone module file to handle AddThis button integration
Code
function addthis_block_info() {
return array(
'addthis' => array(
'info' => t('Add this button'),
'cache' => DRUPAL_CACHE_PER_PAGE,
),
);
}