You are here

function twitter_feed_theme in Twitter_Feed 8

Implements hook_theme().

File

./twitter_feed.module, line 13
Twitter module hooks.

Code

function twitter_feed_theme($existing, $type, $theme, $path) {
  return [
    'twitter_feed_item' => [
      'template' => 'twitter-feed-item',
      'variables' => [
        'tweet' => NULL,
      ],
    ],
  ];
}