You are here

function commerce_reports_date_formats in Commerce Reporting 7.4

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

Implements hook_date_format_types().

Defines a default date type for commerce_reports.

File

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

Code

function commerce_reports_date_formats() {
  return array(
    array(
      'commerce_reports' => 'Commerce Reports',
    ),
  );
}