You are here

function ad_notify_adnotifyapi in Advertisement 5.2

Same name and namespace in other branches
  1. 5 notify/ad_notify.module \ad_notify_adnotifyapi()
  2. 6 notify/ad_notify.module \ad_notify_adnotifyapi()

File

notify/ad_notify.module, line 232
Receive email notifications regarding ads.

Code

function ad_notify_adnotifyapi($op, $arg1 = NULL, $arg2 = NULL) {
  switch ($op) {
    case 'register':
      return array(
        'regular' => t('Email every @when as long as the ad is active.'),
      );
      break;
  }
}