function media_sharestream_theme in Media: ShareStream 7
Implements hook_theme().
File
- ./
media_sharestream.module, line 69 - Provides a stream wrapper and formatters appropriate for accessing and displaying ShareStream videos.
Code
function media_sharestream_theme($existing, $type, $theme, $path) {
return array(
'media_sharestream_video' => array(
'variables' => array(
'uri' => NULL,
'options' => array(),
),
'file' => 'media_sharestream.theme.inc',
'path' => $path . '/themes',
'template' => 'media-sharestream-video',
),
);
}