You are here

function video_embed_instagram_theme in Video Embed Instagram 7

Implements hook_theme().

Using video_embed_instagram.tpl.php as template.

File

./video_embed_instagram.module, line 46
Add a handler for instagram videos to Video Embed Field.

Code

function video_embed_instagram_theme() {
  return array(
    'video_embed_instagram' => array(
      'template' => 'video_embed_instagram',
      'arguments' => array(
        'url' => NULL,
        'width' => NULL,
        'height' => NULL,
      ),
    ),
  );
}