You are here

function mixitup_views_theme in MixItUp Views 7

Same name and namespace in other branches
  1. 8.2 mixitup_views.module \mixitup_views_theme()
  2. 8 mixitup_views.module \mixitup_views_theme()

Implements hook_theme().

File

./mixitup_views.module, line 72
Provides a Views style plugin for displaying content with Mixitup filtering.

Code

function mixitup_views_theme($existing, $type, $theme, $path) {
  return array(
    'mixitup_views_sorting' => array(
      'template' => 'templates/mixitup_views_sorting',
      'arguments' => array(
        'sorts' => NULL,
      ),
    ),
  );
}