You are here

function uc_report_theme in Ubercart 8.4

Implements hook_theme().

File

uc_report/uc_report.module, line 94
Displays reports on sales, customers, and products to store admin.

Code

function uc_report_theme() {
  return [
    'uc_report_product_table' => [
      'variables' => [
        'header' => NULL,
        'rows' => NULL,
        'attributes' => [],
        'caption' => NULL,
        'colgroups' => [],
        'sticky' => TRUE,
        'empty' => '',
      ],
      'function' => 'theme_uc_report_product_table',
    ],
  ];
}