You are here

function ad_report_adapi in Advertisement 5.2

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

Ad module hook_adapi.

File

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

Code

function ad_report_adapi($op, $node = NULL) {
  switch ($op) {
    case 'permissions':
      return array(
        'generate reports' => TRUE,
      );
  }
}