You are here

function media_facebook_video_theme in Media Facebook Video 7

Implements hook_theme().

File

./media_facebook_video.module, line 39
Provides a stream wrapper and formatters for displaying Facebook videos.

Code

function media_facebook_video_theme($existing, $type, $theme, $path) {
  return array(
    'media_facebook_video' => array(
      'variables' => array(
        'uri' => NULL,
        'options' => array(),
      ),
      'file' => 'media_facebook_video.theme.inc',
      'path' => $path . '/themes',
      'template' => 'media-facebook-video',
    ),
  );
}