You are here

function template_preprocess_video_filter_dashboard in Video Filter 7.3

Same name and namespace in other branches
  1. 6.3 video_filter.module \template_preprocess_video_filter_dashboard()

Template preprocess function for video_filter_dashboard().

File

./video_filter.module, line 489

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();
}