function ad_notify_adapi in Advertisement 6
Same name and namespace in other branches
- 5.2 notify/ad_notify.module \ad_notify_adapi()
- 5 notify/ad_notify.module \ad_notify_adapi()
Implementation of hook_adapi().
File
- notify/
ad_notify.module, line 212 - Receive email notifications regarding ads.
Code
function ad_notify_adapi($op, &$node) {
$output = NULL;
switch ($op) {
case 'statistics_increment':
break;
case 'permissions':
return array(
'manage own notifications',
'edit notification email',
);
break;
}
}