You are here

function ad_notify_load_notification in Advertisement 5.2

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

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

2 calls to ad_notify_load_notification()
ad_notify_menu in notify/ad_notify.module
Implementation of hook_menu().
ad_notify_overview in notify/ad_notify.module
Function stub.

File

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

Code

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