You are here

function _edi_wd in Classified Ads 5

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

shortcut - log something to the watchdog log

8 calls to _edi_wd()
_ed_classified_form_submit in ./ed_classified.module
Implementation of form submission handler
_ed_classified_get_vid in ./ed_classified_utils.inc
Returns (and possibly creates) a new vocabulary for classified Lifted from image.module. TODO: Create some built-in terms for the created taxonomy: Miscellaneous, Cars, Pets, etc. (look at craigslist for inspiration)
_ed_classified_notify_advertisers_periodic in ./ed_classified_notifications.inc
Process "periodic" notifications Create a notification if a user has ads nearing expiration
_ed_classified_purge_ad in ./ed_classified_delete.inc
"purge" an expired ad (This will delete a classified ad that has been 'expired' and is older than the threshold)
_ed_classified_purge_ads in ./ed_classified_delete.inc
purge old ads (must have been expired - IOW, unpublished - first.)

... See full list

File

./ed_classified_utils.inc, line 387
Simple text-based classified ads module. Michael Curry, Exodus Development, Inc. exodusdev@gmail.com for more information, please visit http://exodusdev.com/drupal/modules/classified.module Copyright (c) 2006, 2007 Exodus Development, Inc. All Rights…

Code

function _edi_wd($message, $severity = WATCHDOG_NOTICE, $link = NULL) {
  watchdog(EDI_CLASSIFIED_MODULE_NAME, $message, NULL, $severity, $link);
}