You are here

function _ed_classified_process_notification_emails in Classified Ads 5

Same name and namespace in other branches
  1. 5.2 ed_classified_notifications.inc \_ed_classified_process_notification_emails()
  2. 6.2 ed_classified_notifications.inc \_ed_classified_process_notification_emails()
  3. 7.2 ed_classified_notifications.inc \_ed_classified_process_notification_emails()

Process notification email handling on cron run.

Parameters

$time The timestamp to use for email processing.: This allows us to use a consistent timestamp value, and push in fake values for testing and diagnostic purposes.

1 call to _ed_classified_process_notification_emails()
ed_classified_cron in ./ed_classified.module
Implementation of hook_cron().

File

./ed_classified_notifications.inc, line 22
user notifications for imple text-based classified ads module Michael Curry, Exodus Development, Inc. exodusdev@gmail.com for more information, please visit http://exodusdev.com Copyright (c) 2006, 2007 Exodus Development, Inc. All Rights Reserved.…

Code

function _ed_classified_process_notification_emails($time) {
  _ed_classified_notify_advertisers_periodic($time);
}