function ad_owners_adapi in Advertisement 6
Same name and namespace in other branches
- 6.3 owners/ad_owners.module \ad_owners_adapi()
- 6.2 owners/ad_owners.module \ad_owners_adapi()
- 7 owners/ad_owners.module \ad_owners_adapi()
Implementation of hook_adapi().
File
- owners/
ad_owners.module, line 157 - Enhances the ad module to support ad owners.
Code
function ad_owners_adapi($op, $node = NULL) {
switch ($op) {
case 'permissions':
return array(
'manage owners',
);
break;
}
}