You are here

function commerce_reports_block_info in Commerce Reporting 7.4

Same name and namespace in other branches
  1. 7.3 commerce_reports.module \commerce_reports_block_info()

Implements hook_block_info().

Defines the custom blocks defined by commerce_reports.

File

./commerce_reports.module, line 144
Module file for Commerce Reports.

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'),
    ),
  );
}