You are here

function ad_notification_load in Advertisement 6

Load a specified notification from the database, return as an object.

1 call to ad_notification_load()
ad_notify_overview_form in notify/ad_notify.module
Notification overview form.

File

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

Code

function ad_notification_load($notid) {
  return db_fetch_object(db_query('SELECT * FROM {ad_notify} WHERE notid = %d', $notid));
}