function ad_owners_adapi in Advertisement 7
Same name and namespace in other branches
- 6.3 owners/ad_owners.module \ad_owners_adapi()
 - 6 owners/ad_owners.module \ad_owners_adapi()
 - 6.2 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;
  }
}