function commerce_reports_block_info in Commerce Reporting 7.3
Same name and namespace in other branches
- 7.4 commerce_reports.module \commerce_reports_block_info()
Implements hook_block_info().
Defines the custom blocks defined by commerce_reports.
File
- ./
commerce_reports.module, line 70
Code
function commerce_reports_block_info() {
return array(
'commerce_reports_sales' => array(
'info' => t('Commerce Reports: Sales statistics'),
),
'commerce_reports_customers' => array(
'info' => t('Commerce Reports: Customer statistics'),
),
'commerce_reports_customer_map' => array(
'info' => t('Commerce Reports: Customer map'),
),
);
}