Full ELMS Learning Network documentation
function video_filter_theme
cis7 video_filter.module | video_filter_theme($existing, $type, $theme, $path) |
cle7 video_filter.module | video_filter_theme($existing, $type, $theme, $path) |
elmsmedia7 video_filter.module | video_filter_theme($existing, $type, $theme, $path) |
icor7 video_filter.module | video_filter_theme($existing, $type, $theme, $path) |
meedjum_blog7 video_filter.module | video_filter_theme($existing, $type, $theme, $path) |
mooc7 video_filter.module | video_filter_theme($existing, $type, $theme, $path) |
Implements hook_theme().
File
- sites/
all/ modules/ ulmus/ video_filter/ video_filter.module, line 326 - 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_theme($existing, $type, $theme, $path) {
return array(
'video_filter_flash' => array(
'variables' => array(
'video' => NULL,
'params' => NULL,
),
),
'video_filter_iframe' => array(
'variables' => array(
'video' => NULL,
'params' => NULL,
),
),
'video_filter_dashboard' => array(
'variables' => array('form' => NULL),
'template' => 'video_filter_dashboard',
),
);
}