You are here

function ad_owners_adapi in Advertisement 6.3

Same name and namespace in other branches
  1. 6 owners/ad_owners.module \ad_owners_adapi()
  2. 6.2 owners/ad_owners.module \ad_owners_adapi()
  3. 7 owners/ad_owners.module \ad_owners_adapi()

Implementation of hook_adapi().

File

owners/ad_owners.module, line 205
Enhances the ad module to support ad owners.

Code

function ad_owners_adapi($op, $node = NULL) {
  switch ($op) {
    case 'permissions':
      return array(
        'manage owners' => FALSE,
      );
      break;
  }
}