Full ELMS Learning Network documentation
function template_preprocess_video_filter_dashboard
cis7 video_filter.module | template_preprocess_video_filter_dashboard(&$variables) |
cle7 video_filter.module | template_preprocess_video_filter_dashboard(&$variables) |
elmsmedia7 video_filter.module | template_preprocess_video_filter_dashboard(&$variables) |
icor7 video_filter.module | template_preprocess_video_filter_dashboard(&$variables) |
meedjum_blog7 video_filter.module | template_preprocess_video_filter_dashboard(&$variables) |
mooc7 video_filter.module | template_preprocess_video_filter_dashboard(&$variables) |
Template preprocess function for video_filter_dashboard().
File
- sites/
all/ modules/ ulmus/ video_filter/ video_filter.module, line 394 - 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 template_preprocess_video_filter_dashboard(&$variables) {
// Construct page title.
$variables['head_title'] = t('Video filter dashboard');
$variables['head'] = drupal_get_html_head();
$variables['help'] = theme('help');
$variables['language'] = $GLOBALS['language'];
$variables['language']->dir = $GLOBALS['language']->direction ? 'rtl' : 'ltr';
$variables['messages'] = isset($variables['show_messages']) ? theme('status_messages') : '';
$variables['css'] = drupal_add_css();
$variables['styles'] = drupal_get_css();
$variables['scripts'] = drupal_get_js();
}