Full ELMS Learning Network documentation
function video_filter_flash
cis7 video_filter.module | video_filter_flash($video, $params = array()) |
cle7 video_filter.module | video_filter_flash($video, $params = array()) |
elmsmedia7 video_filter.module | video_filter_flash($video, $params = array()) |
icor7 video_filter.module | video_filter_flash($video, $params = array()) |
meedjum_blog7 video_filter.module | video_filter_flash($video, $params = array()) |
mooc7 video_filter.module | video_filter_flash($video, $params = array()) |
Wrapper that calls the theme function.
15 calls to video_filter_flash()
- video_filter_bliptv in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for Blip.tv codec.
- video_filter_capped in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for Capped codec.
- video_filter_collegehumor in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for College Humor codec.
- video_filter_dailymotion in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for DailyMotion codec.
- video_filter_flickr_slideshows in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for Flickr Slideshows codec.
1 string reference to 'video_filter_flash'
- video_filter_theme in sites/
all/ modules/ ulmus/ video_filter/ video_filter.module - Implements hook_theme().
File
- sites/
all/ modules/ ulmus/ video_filter/ video_filter.module, line 254 - Video filter is a highly flexible and easy extendable filter module to embed any type of video in your site using a simple tag.
Code
function video_filter_flash($video, $params = array()) {
return theme('video_filter_flash', array('video' => $video, 'params' => $params));
}