You are here

function views_complex_grouping_theme in Views Complex Grouping 7

Same name and namespace in other branches
  1. 8 views_complex_grouping.module \views_complex_grouping_theme()

Implements hook_theme().

File

./views_complex_grouping.module, line 20
Declaring Views dependancy.

Code

function views_complex_grouping_theme($existing, $type, $theme, $path) {
  return array(
    'views_complex_grouping_level' => array(
      'variables' => array(
        'view' => NULL,
        'grouping' => NULL,
        'grouping_branch' => NULL,
        'grouping_level' => NULL,
        'rows' => array(),
        'content' => NULL,
        'title' => '',
        'fields' => array(),
      ),
      'template' => 'views_complex_grouping_level',
    ),
  );
}