function _ed_classified_ad_expired_already in Classified Ads 5.2
Same name and namespace in other branches
- 5 ed_classified_utils.inc \_ed_classified_ad_expired_already()
- 6.2 ed_classified_utils.inc \_ed_classified_ad_expired_already()
- 7.2 ed_classified_utils.inc \_ed_classified_ad_expired_already()
return true if ad has expired
1 call to _ed_classified_ad_expired_already()
- theme_ed_classified_ending_date in ./
ed_classified_themefuncs.inc - Get a formatted div with a readable, friendly ad expiration date.
File
- ./
ed_classified_utils.inc, line 328 - 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 _ed_classified_ad_expired_already($expiration_date) {
return $expiration_date <= REQUEST_TIME;
}