You are here

function isotope_example_preprocess_views_view in Isotope (with Masonry and Packery) 7.2

Implements hook_preprocess_views_view().

File

isotope_example/isotope_example.module, line 117
Simple example module.

Code

function isotope_example_preprocess_views_view(&$vars) {
  if ($vars['name'] == 'isotope_example') {
    drupal_add_css(drupal_get_path('module', 'isotope_example') . '/isotope_example.css');
  }
}