You are here

function tweetbutton_theme in Tweet Button 7

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

Implementation of hook_theme()

File

./tweetbutton.module, line 66

Code

function tweetbutton_theme() {
  return array(
    'tweetbutton_display' => array(
      'variables' => array(
        'object' => NULL,
        'options' => array(),
      ),
    ),
    'tweetbutton_follow_display' => array(
      'variables' => array(
        'options' => array(),
        'screen_name' => '',
      ),
    ),
  );
}