You are here

function template_preprocess_image_view_image_gallery in Image 6

Same name and namespace in other branches
  1. 7 views/theme/theme.inc \template_preprocess_image_view_image_gallery()

Preprocessor for the gallery style plugin.

File

views/theme/theme.inc, line 13
Theme preprocessors for image plugins.

Code

function template_preprocess_image_view_image_gallery(&$vars) {

  // Call the parent preprocess function to get a heap of variables.
  template_preprocess_views_view_list($vars);
  drupal_add_css(drupal_get_path('module', 'image') . '/image.css');
}