You are here

function EMMODULE_PROVIDER_emfield_subtheme in Embedded Media Field 6

Same name and namespace in other branches
  1. 6.3 hooks/emfield.php \EMMODULE_PROVIDER_emfield_subtheme()
  2. 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'),
    ),
  );
}