You are here

function ad_adapi in Advertisement 6

Same name and namespace in other branches
  1. 5.2 ad.module \ad_adapi()
  2. 5 ad.module \ad_adapi()
  3. 6.3 ad.module \ad_adapi()
  4. 6.2 ad.module \ad_adapi()
  5. 7 ad.module \ad_adapi()

File

./ad.module, line 925
An advertising system for Drupal powered websites.

Code

function ad_adapi($op, $node = NULL) {
  switch ($op) {
    case 'permissions':
      return array(
        'access statistics',
        'access click history',
        'manage status',
      );
      break;
  }
}