function commerce_reports_theme in Commerce Reporting 7
Same name and namespace in other branches
- 7.4 commerce_reports.module \commerce_reports_theme()
- 7.3 commerce_reports.module \commerce_reports_theme()
Implements hook_theme().
File
- ./
commerce_reports.module, line 11 - Defines additional menu item and order reports functionality.
Code
function commerce_reports_theme() {
return array(
'commerce_reports_products_qty_monthly_line' => array(
'variables' => array(
'data' => NULL,
),
'template' => 'theme/commerce-reports-products-qty-monthly-line',
),
'commerce_reports_products_sales_monthly_bar' => array(
'variables' => array(
'data' => NULL,
),
'template' => 'theme/commerce-reports-products-sales-monthly-bar',
),
'commerce_reports_products_percent_monthly_pie' => array(
'variables' => array(
'data' => NULL,
),
'template' => 'theme/commerce-reports-products-percent-pie',
),
);
}