function mixitup_views_theme in MixItUp Views 8
Same name and namespace in other branches
- 8.2 mixitup_views.module \mixitup_views_theme()
- 7 mixitup_views.module \mixitup_views_theme()
Implements hook_theme().
File
- ./
mixitup_views.module, line 37 - Contains mixitup_views.module.
Code
function mixitup_views_theme() {
$theme = [
'mixitup_views_sorting' => [
'variables' => [
'sorts' => [],
],
'template' => 'mixitup_views.sorting',
],
];
return $theme;
}