You are here

function commerce_reports_tax_block_info in Commerce Reporting 7.3

Same name and namespace in other branches
  1. 7.4 modules/tax/commerce_reports_tax.module \commerce_reports_tax_block_info()

Implements hook_block_info().

Defines the custom blocks defined by commerce_reports_tax.

File

modules/tax/commerce_reports_tax.module, line 133

Code

function commerce_reports_tax_block_info() {
  return array(
    'commerce_reports_tax' => array(
      'info' => t('Commerce Tax Reports'),
    ),
  );
}