Further modules included.
[yaffs-website] / web / modules / contrib / views_responsive_grid / views_responsive_grid.module
1 <?php
2 /**
3  * @file
4  * Provides a Views style plugin to display content in a responsive grid.
5  */
6
7 /**
8  * Implements hook_theme_registry_alter().
9  */
10 function views_responsive_grid_theme_registry_alter(&$theme_registry) {
11   // For some issue in core, we need to set our theme path ourselves.
12   // @see http://drupal.org/node/1911492
13   $template =& $theme_registry['views_view_responsive_grid'];
14   $template['theme path'] = drupal_get_path('module', 'views_responsive_grid');
15   $template['path'] = drupal_get_path('module', 'views_responsive_grid') . '/templates';
16 }