function tweetbutton_block_info in Tweet Button 7
Same name and namespace in other branches
- 7.2 tweetbutton.module \tweetbutton_block_info()
Implementation of hook_block_info()
File
- ./
tweetbutton.module, line 144
Code
function tweetbutton_block_info() {
$blocks['tweetbutton'] = array(
'info' => t('Tweetbutton tweet'),
);
$blocks['tweetbutton_follow'] = array(
'info' => t('Tweetbutton follow'),
);
return $blocks;
}