You are here

function emvideo_youtube_emfield_subtheme in Embedded Media Field 6

Implementation of hook_emfield_subtheme.

File

contrib/emvideo/providers/youtube.inc, line 649
This include processes youtube.com media files for use by emfield.module.

Code

function emvideo_youtube_emfield_subtheme() {
  return array(
    'emvideo_youtube_flash' => array(
      'arguments' => array(
        'embed' => NULL,
        'width' => NULL,
        'height' => NULL,
        'autoplay' => NULL,
        'options' => array(),
      ),
      'file' => 'providers/youtube.inc',
    ),
    'emvideo_youtube_default_external' => array(
      'arguments' => array(
        'height' => NULL,
        'width' => NULL,
        'url' => NULL,
        'id' => NULL,
        'div_id' => NULL,
        'fullscreen_value' => NULL,
        'flashvars' => NULL,
      ),
    ),
  );
}