You are here

function template_preprocess_views_view_masonry in Masonry Views 7

Same name and namespace in other branches
  1. 7.3 masonry_views.module \template_preprocess_views_view_masonry()

Preprocess function for views_view_masonry.tpl.php.

File

./masonry_views.module, line 17
Provides a Views plugin for displaying content in a Masonry layout.

Code

function template_preprocess_views_view_masonry(&$vars) {

  // Run preprocess function for unformatted style
  template_preprocess_views_view_unformatted($vars);

  // Get view options
  $view = $vars['view'];
  $options = $vars['options'];

  // Display content in a Masonry layout
  $container = '.view-' . drupal_clean_css_identifier($view->name) . '.view-display-id-' . $view->current_display . ' .view-content';
  $options['masonry_item_selector'] = '.masonry-item';
  masonry_apply($container, $options);
}