Full ELMS Learning Network documentation
function video_filter_get_codec_info
cis7 video_filter.module | video_filter_get_codec_info() |
cle7 video_filter.module | video_filter_get_codec_info() |
elmsmedia7 video_filter.module | video_filter_get_codec_info() |
icor7 video_filter.module | video_filter_get_codec_info() |
meedjum_blog7 video_filter.module | video_filter_get_codec_info() |
mooc7 video_filter.module | video_filter_get_codec_info() |
3 calls to video_filter_get_codec_info()
- _video_filter_instructions in sites/
all/ modules/ ulmus/ video_filter/ video_filter.module - Parses Codec into instructions for WYSIWYG popup.
- _video_filter_process in sites/
all/ modules/ ulmus/ video_filter/ video_filter.module - _video_filter_tips in sites/
all/ modules/ ulmus/ video_filter/ video_filter.module
File
- sites/
all/ modules/ ulmus/ video_filter/ video_filter.module, line 265 - 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_get_codec_info() {
static $codecs;
if (!isset($codecs)) {
$codecs = module_invoke_all('codec_info');
drupal_alter('video_filter_codec_info', $codecs);
}
return $codecs;
}