You are here

function video_filter_flash in Video Filter 7.3

Same name and namespace in other branches
  1. 5.2 video_filter.module \video_filter_flash()
  2. 5 video_filter.module \video_filter_flash()
  3. 6.3 video_filter.module \video_filter_flash()
  4. 6 video_filter.module \video_filter_flash()
  5. 6.2 video_filter.module \video_filter_flash()

Wrapper that calls the theme function.

16 calls to video_filter_flash()
video_filter_bliptv in ./video_filter.codecs.inc
Callback for Blip.tv codec.
video_filter_capped in ./video_filter.codecs.inc
Callback for Capped codec.
video_filter_collegehumor in ./video_filter.codecs.inc
Callback for College Humor codec.
video_filter_dailymotion in ./video_filter.codecs.inc
Callback for DailyMotion codec.
video_filter_flickr_slideshows in ./video_filter.codecs.inc
Callback for Flickr Slideshows codec.

... See full list

File

./video_filter.module, line 300

Code

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