You are here

function simple_instagram_feed_theme in Simple Instagram Feed Block 8.3

Same name and namespace in other branches
  1. 8 simple_instagram_feed.module \simple_instagram_feed_theme()
  2. 8.2 simple_instagram_feed.module \simple_instagram_feed_theme()
  3. 1.0.x simple_instagram_feed.module \simple_instagram_feed_theme()

Implements hook_theme().

File

./simple_instagram_feed.module, line 17
Drupal Module: Simple Instagram Feed.

Code

function simple_instagram_feed_theme($existing, $type, $theme, $path) {
  $variables = [
    'simple_instagram_block' => [
      'variables' => [
        'markup' => [],
        'unique_id' => NULL,
      ],
    ],
  ];
  return $variables;
}