You are here

function uc_reports_theme in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_reports/uc_reports.module \uc_reports_theme()

Implements hook_theme().

File

uc_reports/uc_reports.module, line 172
Displays reports on sales, customers, and products to store admin.

Code

function uc_reports_theme() {
  return array(
    'uc_reports_product_table' => array(
      'variables' => array(
        'header' => NULL,
        'rows' => NULL,
        'attributes' => array(),
        'caption' => NULL,
        'colgroups' => array(),
        'sticky' => TRUE,
        'empty' => '',
      ),
      'file' => 'uc_reports.admin.inc',
    ),
  );
}