You are here

function _ad_report_format_date_human in Advertisement 6.3

Same name and namespace in other branches
  1. 5.2 report/ad_report.module \_ad_report_format_date_human()
  2. 6.2 report/ad_report.module \_ad_report_format_date_human()
  3. 7 report/ad_report.module \_ad_report_format_date_human()

Helper function to format date.

2 calls to _ad_report_format_date_human()
ad_report_admin in report/ad_report.module
ad_report_range_form in report/ad_report.module
Return a form for selecting a date range for generating a report.

File

report/ad_report.module, line 686
Provides comprehensive charts and reports about advertising statistics.

Code

function _ad_report_format_date_human($date) {
  return date('Y-m-d H:i', $date);
}