You are here

function _ad_report_format_date_db in Advertisement 6.3

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

Helper function to format date.

3 calls to _ad_report_format_date_db()
ad_report_admin_ad_table in report/ad_report.module
Generate a table reporting on the selected advertisements. Returns an array of ad NIDs in $ads.
ad_report_admin_display in report/ad_report.module
Display the administrative report.
ad_report_bargraph in report/ad_report.module
Page to display ad with bargraph.

File

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

Code

function _ad_report_format_date_db($date) {
  return date('YmdH', $date);
}