You are here

function varbase_media_theme in Varbase Media 8.7

Same name and namespace in other branches
  1. 8.6 varbase_media.module \varbase_media_theme()
  2. 9.0.x varbase_media.module \varbase_media_theme()

Implements hook_theme().

File

./varbase_media.module, line 756
Contains varbase_media.module.

Code

function varbase_media_theme($existing, $type, $theme, $path) {
  return [
    'media_oembed_iframe__remote_video' => [
      'template' => 'media-oembed-iframe--remote-video',
      'variables' => [
        'provider' => NULL,
        'media' => NULL,
      ],
    ],
    'media_entity_gallery_post' => [
      'variables' => [
        'post' => NULL,
        'shortcode' => NULL,
      ],
    ],
  ];
}