You are here

function views_summarize_theme in Views Summarize 1.1.x

Same name and namespace in other branches
  1. 6 views_summarize.module \views_summarize_theme()
  2. 7.2 views_summarize.module \views_summarize_theme()
  3. 7 views_summarize.module \views_summarize_theme()

Implements hook_theme().

File

./views_summarize.module, line 13
Defines the functionality and Drupal hooks for this module.

Code

function views_summarize_theme() {
  return [
    // This is for themeing the form for the Views Summarized table Settings.
    'views_summarize_style_plugin_summarized_table' => [
      'render element' => 'form',
    ],
  ];
}