Full ELMS Learning Network documentation
function video_filter_iframe
cis7 video_filter.module | video_filter_iframe($video) |
cle7 video_filter.module | video_filter_iframe($video) |
elmsmedia7 video_filter.module | video_filter_iframe($video) |
icor7 video_filter.module | video_filter_iframe($video) |
meedjum_blog7 video_filter.module | video_filter_iframe($video) |
mooc7 video_filter.module | video_filter_iframe($video) |
Wrapper that calls the theme function.
7 calls to video_filter_iframe()
- video_filter_archive in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for Archive.org codec.
- video_filter_gametrailers in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for Game Trailers codec.
- video_filter_godtube in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for GodTube codec.
- video_filter_slideshare in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - Callback for Slideshare codec.
- video_filter_vimeo_html5 in sites/
all/ modules/ ulmus/ video_filter/ video_filter.codecs.inc - HTML5 callback for Vimeo codec.
1 string reference to 'video_filter_iframe'
- 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 261 - 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_iframe($video) {
return theme('video_filter_iframe', array('video' => $video));
}