You are here

function video_filter_iframe in Video Filter 7.3

Same name and namespace in other branches
  1. 6.3 video_filter.module \video_filter_iframe()

Wrapper that calls the theme function.

22 calls to video_filter_iframe()
video_filter_archive in ./video_filter.codecs.inc
Callback for Archive.org codec.
video_filter_candidcareer in ./video_filter.codecs.inc
Callback for Candid Career codec.
video_filter_coub in ./video_filter.codecs.inc
HTML5 callback for Coub codec.
video_filter_dailymotion_html5 in ./video_filter.codecs.inc
HTML5 callback for DailyMotion codec.
video_filter_democracynow_fullshow in ./video_filter.codecs.inc
Callback for DemocracyNow Fullshow codec.

... See full list

File

./video_filter.module, line 307

Code

function video_filter_iframe($video) {
  return theme('video_filter_iframe', array(
    'video' => $video,
  ));
}