You are here

function _media_vimeo_options in Media: Vimeo 6

3 calls to _media_vimeo_options()
template_preprocess_media_vimeo in themes/media_vimeo.theme.inc
@file media_vimeo/themes/media_vimeo.theme.inc Theme functions for Media: Vimeo.
template_preprocess_media_vimeo_flash in themes/media_vimeo.theme.inc
The embedded flash displaying the Vimeo video.
template_preprocess_media_vimeo_universal in themes/media_vimeo.theme.inc
Display the video in an iFrame with HTML5.

File

themes/media_vimeo.theme.inc, line 75
media_vimeo/themes/media_vimeo.theme.inc Theme functions for Media: Vimeo.

Code

function _media_vimeo_options(&$variables) {
  foreach ($variables['options'] as $key => $value) {
    $variables[$key] = $value;
  }
  unset($variables['options']);
}