function video_embed_field_theme in Video Embed Field 8
Same name and namespace in other branches
- 8.2 video_embed_field.module \video_embed_field_theme()
- 7.2 video_embed_field.module \video_embed_field_theme()
Implements hook_theme().
File
- ./
video_embed_field.module, line 14 - Module file for video_embed_field.
Code
function video_embed_field_theme() {
return [
'video_embed_iframe' => [
'variables' => [
'url' => '',
'query' => [],
'attributes' => [],
'fragment' => '',
],
],
'video_embed_field_missing_provider' => [
'variables' => [],
],
];
}