You are here

function uc_reports_theme in Ubercart 6.2

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

Implements hook_theme().

File

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

Code

function uc_reports_theme() {
  return array(
    'uc_reports_product_table' => array(
      'arguments' => array(
        'header' => NULL,
        'rows' => NULL,
        'attributes' => array(),
        'caption' => NULL,
      ),
    ),
  );
}