You are here

function commerce_reports_tax_block_view 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_view()

Implements hook_block_view().

Implementation of the dashboard block used in commerce_reports.

File

modules/tax/commerce_reports_tax.module, line 146

Code

function commerce_reports_tax_block_view($delta = '') {
  module_load_include('inc', 'commerce_reports_tax', 'commerce_reports_tax.admin');
  switch ($delta) {
    case 'commerce_reports_tax':
      return commerce_reports_tax_table();
  }
}