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