function tweetbutton_theme in Tweet Button 7.2
Same name and namespace in other branches
- 8 tweetbutton.module \tweetbutton_theme()
- 6 tweetbutton.module \tweetbutton_theme()
- 7 tweetbutton.module \tweetbutton_theme()
Implements hook_theme().
File
- ./
tweetbutton.module, line 257
Code
function tweetbutton_theme() {
return array(
'tweetbutton_tweet_display' => array(
'variables' => array(
'entity' => NULL,
'entity_type' => NULL,
'options' => array(),
),
),
'tweetbutton_follow_display' => array(
'variables' => array(
'options' => array(),
'screen_name' => '',
),
),
'tweetbutton_hashtag_display' => array(
'variables' => array(
'options' => array(),
'hashtag' => '',
),
),
);
}