You are here

function twitterfield_theme in TwitterField 7

Same name and namespace in other branches
  1. 6 twitterfield.module \twitterfield_theme()

Implements hook_theme().

File

./twitterfield.module, line 11
The Twitter Field Widget provides a custom field formatter to display Twitter Id's as Twitter Profile Widgets.

Code

function twitterfield_theme() {
  return array(
    'twitter_widget' => array(
      'variables' => array(
        'type' => NULL,
        'value' => NULL,
        'title' => NULL,
        'subject' => NULL,
      ),
      'template' => 'twitter-widget',
    ),
  );
}