You are here

function tweetbutton_theme in Tweet Button 8

Same name and namespace in other branches
  1. 6 tweetbutton.module \tweetbutton_theme()
  2. 7.2 tweetbutton.module \tweetbutton_theme()
  3. 7 tweetbutton.module \tweetbutton_theme()

Implements hook_theme()

File

./tweetbutton.module, line 28
Adds block with tweet and follow buttons.

Code

function tweetbutton_theme() {
  return array(
    'tweetbutton_tweet_display' => array(
      'variables' => array(
        'options' => array(),
      ),
    ),
    'tweetbutton_follow_display' => array(
      'variables' => array(
        'options' => array(),
      ),
    ),
    'tweetbutton_hashtag_display' => array(
      'variables' => array(
        'options' => array(),
        'hashtag' => '',
      ),
    ),
  );
}