function media_entity_video_theme in Media entity video 8
Same name and namespace in other branches
- 8.3 media_entity_video.module \media_entity_video_theme()
- 8.2 media_entity_video.module \media_entity_video_theme()
Implements hook_theme().
File
- ./
media_entity_video.module, line 13 - Media entity for video files.
Code
function media_entity_video_theme() {
return array(
'media_video_file_formatter' => array(
'variables' => array(
'file' => NULL,
'description' => NULL,
'attributes' => array(),
'value' => NULL,
'extravalue' => NULL,
),
),
);
}