function EMMODULE_PROVIDER_emfield_subtheme in Embedded Media Field 6.3
Same name and namespace in other branches
- 6 hooks/emfield.php \EMMODULE_PROVIDER_emfield_subtheme()
- 6.2 hooks/emfield.php \EMMODULE_PROVIDER_emfield_subtheme()
Returns any theme functions required for this provider.
File
- hooks/
emfield.php, line 140 - Document various hooks for Embedded Media Field.
Code
function EMMODULE_PROVIDER_emfield_subtheme() {
return array(
'emvideo_example_flash' => array(
'arguments' => array(
'embed' => NULL,
'width' => NULL,
'height' => NULL,
'autoplay' => NULL,
'options' => array(),
),
'file' => 'providers/example.inc',
'path' => drupal_get_path('module', 'media_example'),
),
);
}