function emvideo_zzz_custom_url_emfield_subtheme in Embedded Media Field 6.3
Same name and namespace in other branches
- 6 contrib/emvideo/providers/zzz_custom_url.inc \emvideo_zzz_custom_url_emfield_subtheme()
Implementation of hook_emfield_subtheme.
File
- contrib/
emvideo/ providers/ zzz_custom_url.inc, line 301 - This is an include file used by emfield.module.
Code
function emvideo_zzz_custom_url_emfield_subtheme() {
return array(
'emvideo_zzz_custom_url_embedded_video' => array(
'arguments' => array(
'type' => NULL,
'url' => NULL,
'width' => NULL,
'height' => NULL,
'autoplay' => FALSE,
'field' => NULL,
'item' => NULL,
),
'file' => 'providers/zzz_custom_url.inc',
),
);
}